GetActorSectorLocation: Difference between revisions

From Zandronum Wiki
(Added page for GetActorSectorLocation.)
 
(We have our own SECTINFO page now)
Tag: Source edit
Line 4: Line 4:


==Usage==
==Usage==
Returns a string containing the name of the sector the actor is currently in, as defined in {{zdoomwiki|SECTINFO}}.
Returns a string containing the name of the sector the actor is currently in, as defined in [[SECTINFO]].


===Parameters===
===Parameters===

Revision as of 17:56, 22 August 2022

This article documents a Zandronum-specific ACS feature which may not be supported by ZDoom and its other child ports.

str GetActorSectorLocation (int tid, bool point) (development version 3.2-alpha and above only)

Usage

Returns a string containing the name of the sector the actor is currently in, as defined in SECTINFO.

Parameters

  • tid: The TID of the actor. If set to 0, the activator is used instead.
  • point: If enabled, this returns the name of whatever point sector the actor may be in instead of the sector's actual name. This can be useful in Domination.

Return value

Returns a string containing the name of the (point) sector the actor's inside of. If it doesn't, or if the actor doesn't exist, it returns an empty string.

Examples

This article lists no examples, please add one.

See also