Skip to content
View kyLi18n's full-sized avatar
  • Beijing, China
  • 03:50 (UTC +08:00)

Highlights

  • Pro

Block or report kyLi18n

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. github/opensource.guide github/opensource.guide Public

    📚 Community guides for open source creators

    HTML 15.2k 15.3k

  2. Ukawka/2D-Platformer-Game Ukawka/2D-Platformer-Game Public

    C# 1

  3. Unity range types (float, int) with ... Unity range types (float, int) with custom property drawer. Unity 取值范围类型(包括浮点型的、整型的)及其自定义属性绘制器。
    1
    // Origin: https://gist.github.com/kyLi18n/e9f33c08ca049336c1b4800c087d2ac8
    2
    
                  
    3
    using System;
    4
    using System.Collections;
    5
    using System.Collections.Generic;
  4. Unity weighted selector with custom ... Unity weighted selector with custom editor. Unity 加权选择器及其自定义编辑器。
    1
    // Origin: https://gist.github.com/kyLi18n/4d433b94a1a45dcd135d82cd2bfb0807
    2
    
                  
    3
    using System;
    4
    using System.Collections.Generic;
    5
    using System.Linq;
  5. Unity ScriptableObject base class th... Unity ScriptableObject base class that will automatically reset when exiting play mode, just like scene data. Unity 在退出运行模式时会像场景数据一样自动重置的可脚本化对象基类。
    1
    // Origin: https://gist.github.com/kyLi18n/19e018c2527c2c9ee38bd3bce2bdecd2
    2
    
                  
    3
    #if UNITY_EDITOR
    4
    using UnityEditor;
    5
    #endif
  6. Unity ScriptableObject inline editor... Unity ScriptableObject inline editor attribute & drawer. Unity 可脚本化对象内联编辑器特性及绘制器。
    1
    // Origin: https://gist.github.com/kyLi18n/3df1c7fbdb66d35470085de5e27f8490
    2
    
                  
    3
    using System;
    4
    using UnityEngine;
    5