Skip to content

Instantly share code, notes, and snippets.

@douduck08
douduck08 / README.md
Last active March 3, 2025 23:49
The general GetValue extension of SerializedProperty in Unity Editor.

Unity's SerializedProperty not support custom type value setting. This extension use Reflection to get target instance of SerializedProperty in Custom Editor, made value setting of general type is posible.

@StevenACoffman
StevenACoffman / Homoglyphs.md
Last active May 7, 2025 00:23
Unicode Look-alikes

Unicode Character Look-Alikes

Original Letter Look-Alike(s)
a а ạ ą ä à á ą
c с ƈ ċ
d ԁ ɗ
e е ẹ ė é è
g ġ
h һ
using System;
using System.Threading;
using System.Threading.Tasks;
using Cysharp.Text;
using Cysharp.Threading.Tasks;
using UnityEngine;
using StringBuilder = Cysharp.Text.Utf16ValueStringBuilder;
public class CancelledTaskLogTest : MonoBehaviour
{