blob: 660d2f0ea716125110b301056ef7b74e92f0e93b (
plain)
1
2
3
4
5
6
7
8
9
|
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// 有这个标记时表示这个属性是GUI.enabled = false
public class DisallowModifiyInGUI : Attribute
{
}
|