?? 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 + -