📄 aspropflags.as
字号:
class com.gamepackage.util.AsPropFlags
{
static function setEnumerable( pObj, pProp , pBool ): Void
{
_global.ASSetPropFlags( pObj, pProp, pBool ? 0 : 1 , pBool ? 1 : 0 );
}
static function setModifiable( pObj, pProp, pBool ): Void
{
_global.ASSetPropFlags( pObj, pProp, pBool ? 0 : 4 , pBool ? 4 : 0 );
}
static function setErasable( pObj, pProp, pBool )
{
_global.ASSetPropFlags(pObj, pProp, pBool ? 0 : 2 , pBool ? 2 : 0 );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -