コード例 #1
0
ファイル: BaseActions.cs プロジェクト: BeauPrime/RuleScript
 static private void SetLocked(this IRSRuntimeEntity inEntity, [RSParameter("Locked")] bool inbLocked)
 {
     inEntity.SetLocked(inbLocked);
 }
コード例 #2
0
ファイル: BaseActions.cs プロジェクト: BeauPrime/RuleScript
 static private void Unlock(this IRSRuntimeEntity inEntity)
 {
     inEntity.SetLocked(false);
 }
コード例 #3
0
ファイル: BaseActions.cs プロジェクト: BeauPrime/RuleScript
 static private void ToggleLocked(this IRSRuntimeEntity inEntity)
 {
     inEntity.SetLocked(!inEntity.IsLocked());
 }
コード例 #4
0
ファイル: BaseActions.cs プロジェクト: BeauPrime/RuleScript
 static private void Lock(this IRSRuntimeEntity inEntity)
 {
     inEntity.SetLocked(true);
 }