Skip to content
View MelMacaluso's full-sized avatar
🌝
You are very curious, aren't ya?
🌝
You are very curious, aren't ya?
Block or Report

Block or report MelMacaluso

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. This Unity custom property drawer pr... This Unity custom property drawer provides a user-friendly min-max slider for integer values in the inspector. It is useful for developers who need to set a range of values. The custom attribute and property drawer handle MinMaxInt class, ensuring that values are clamped within specified limits and displayed as a slider with editable fields for min and max values.
    1
    using UnityEditor;
    2
    using UnityEngine;
    3
    
                  
    4
    [System.Serializable]
    5
    public class MinMaxInt
  2. Automatically expose all the ACF fie... Automatically expose all the ACF fields to the Wordpress REST API in Pages and in your custom post types.
    1
    <?php
    2
        function create_ACF_meta_in_REST() {
    3
            $postypes_to_exclude = ['acf-field-group','acf-field'];
    4
            $extra_postypes_to_include = ["page"];
    5
            $post_types = array_diff(get_post_types(["_builtin" => false], 'names'),$postypes_to_exclude);