SetActorPosition

From Eternity Wiki
Revision as of 11:52, 25 April 2021 by Printz (talk | contribs)
Jump to navigationJump to search

Description

This is an ACS built-in function.

Teleports the tagged thing to a given location marked by (x, y, z).

Usage

bool SetActorPosition(int tid, fixed x, fixed y, fixed z, bool fog)

Parameters

  • tid: tagged thing to move (see tid for details)
  • x, y, z: map coordinates where to move the thing
  • fog: whether to produce teleportation fog

Return value

Examples

No examples given.

Notes

Beware that since it's considered teleportation, no visual interpolation is taking place, so for small distances meant to produce controlled movement, it will look jerky.

Returns true if teleportation was successful.

This function's identification in zspecial.acs is: (ACC internal).

See also