Moderator elections are being held. See Valve Developer Community:Moderator elections for more details.
Users who would like to run for moderator must be autoconfirmed and have at least 100 edits. Users can check their own edit count at Special:Preferences.
This article's documentation is for anything that uses the Source engine. Click here for more information.

logic_scene_list_manager

From Valve Developer Community
Jump to: navigation, search
class hierarchy
CSceneListManager defined in sceneentity.cpp
CLogicalEntity
CServerOnlyEntity
CBaseEntity
Logic scene list manager.png

logic_scene_list_manager is a point entity available in all Source Source games. It manages a list of logic_choreographed_scene entities. Store choreo scenes in them in order that they will be played by other inputs. Whenever a scene plays, the manager will remove all scenes before that one in the list. The name of another logic_scene_list_manager can be entered in a slot instead of an individual scene, which will cause all scenes in that manager to be removed when a later scene in this list is played.

Keyvalues

Scene 1 (scene0) to Scene16 (scene15) <targetname>
The name of a logic_choreographed_scene, or logic_scene_list_manager.
Name (targetname) <string>
The targetname that other entities refer to this entity by.

Inputs

Shutdown
Remove the manager and all scenes referenced by it (and all scenes referenced by logic_scene_list_manager's embedded in this one).

See also