Difference between revisions of "Osiris/API/CharacterAppearOutOfSightTo"
From Divinity Engine Wiki
m (link SetOnStage) |
m |
||
Line 4: | Line 4: | ||
'''_Character''' should be off-stage when calling this routine. This call will place '''_Character''' on-stage out of sight of '''_Target''' at '''_Angle''' degrees (0 = North), after which it will walt to '''_Target'''. If '''_PlaySpawn''' is 1, '''_Character''''s spawn animation is played. If '''_PlaySpawn''' is 0, '''_Character''' is simply placed on-stage. '''_Event''' is triggered on '''_Character''' once it is on stage. | '''_Character''' should be off-stage when calling this routine. This call will place '''_Character''' on-stage out of sight of '''_Target''' at '''_Angle''' degrees (0 = North), after which it will walt to '''_Target'''. If '''_PlaySpawn''' is 1, '''_Character''''s spawn animation is played. If '''_PlaySpawn''' is 0, '''_Character''' is simply placed on-stage. '''_Event''' is triggered on '''_Character''' once it is on stage. | ||
===== Notes ===== | ===== Notes ===== | ||
− | * Getting the angle right is hard and error-prone. If possible, use | + | * Getting the angle right is hard and error-prone. If possible, use [[Osiris/API/CharacterAppearOutOfSightToObject|CharacterAppearOutOfSightToObject]] instead. |
===== See Also ===== | ===== See Also ===== | ||
* [[Osiris/API/CharacterAppear|CharacterAppear]] | * [[Osiris/API/CharacterAppear|CharacterAppear]] | ||
* [[Osiris/API/CharacterAppearOnTrailOutOfSightTo|CharacterAppearOnTrailOutOfSightTo]] | * [[Osiris/API/CharacterAppearOnTrailOutOfSightTo|CharacterAppearOnTrailOutOfSightTo]] | ||
+ | * [[Osiris/API/CharacterAppearOnTrailOutOfSightToCustom|CharacterAppearOnTrailOutOfSightToCustom]] | ||
* [[Osiris/API/CharacterAppearOnTrailOutOfSightToObject|CharacterAppearOnTrailOutOfSightToObject]] | * [[Osiris/API/CharacterAppearOnTrailOutOfSightToObject|CharacterAppearOnTrailOutOfSightToObject]] | ||
+ | * [[Osiris/API/CharacterAppearOnTrailOutOfSightToObjectCustom|CharacterAppearOnTrailOutOfSightToObjectCustom]] | ||
* [[Osiris/API/CharacterAppearOutOfSightToObject|CharacterAppearOutOfSightToObject]] | * [[Osiris/API/CharacterAppearOutOfSightToObject|CharacterAppearOutOfSightToObject]] | ||
+ | * [[Osiris/API/CharacterAppearOutOfSightToObjectCustom|CharacterAppearOutOfSightToObjectCustom]] | ||
* [[Osiris/API/SetOnStage|SetOnStage]] | * [[Osiris/API/SetOnStage|SetOnStage]] | ||
* [[Osiris/API/StoryEvent|StoryEvent]] | * [[Osiris/API/StoryEvent|StoryEvent]] | ||
[[Category:Osiris Calls]] | [[Category:Osiris Calls]] |
Revision as of 12:19, 25 November 2017
Full Definition(s)
- call CharacterAppearOutOfSightTo((CHARACTERGUID)_Character, (GUIDSTRING)_Target, (INTEGER)_Angle, (INTEGER)_PlaySpawn, (STRING)_Event)
Description
_Character should be off-stage when calling this routine. This call will place _Character on-stage out of sight of _Target at _Angle degrees (0 = North), after which it will walt to _Target. If _PlaySpawn is 1, _Character's spawn animation is played. If _PlaySpawn is 0, _Character is simply placed on-stage. _Event is triggered on _Character once it is on stage.
Notes
- Getting the angle right is hard and error-prone. If possible, use CharacterAppearOutOfSightToObject instead.