コード例 #1
0
ファイル: tests.py プロジェクト: Tbeck-91/soulstruct
def CharacterOutsideRegion(entity: AnimatedInt, region: Region, condition, negate=False):
    return instr.IfCharacterRegionState(condition, entity, region, negate)
コード例 #2
0
ファイル: tests.py プロジェクト: Tbeck-91/soulstruct
def PlayerOutsideRegion(region: Region, condition, negate=False):
    return instr.IfCharacterRegionState(condition, PLAYER, region, negate)
コード例 #3
0
ファイル: tests.py プロジェクト: wrekklol/soulstruct
def CharacterInsideRegion(entity: AnimatedTyping,
                          region: Region,
                          condition,
                          negate=False):
    return instr.IfCharacterRegionState(condition, entity, region, not negate)