This article's documentation is for anything that uses the Source engine. Click here for more information.

Logic scene list manager: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (Robot: fixing template case.)
(Formatring, clarification)
 
(12 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{wrongtitle|title=logic_scene_list_manager}}
{{CD|CSceneListManager|file1=sceneentity.cpp}}
==Entity Description==
{{this is a|logical entity|name=logic_scene_list_manager|sprite=1}} It manages a list of {{ent|logic_choreographed_scene}} entities. It stores choreo scenes so 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 {{ent|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.{{clr}}
[[Image:{{PAGENAME}}.png|left]]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 invididual scene, which will cause all scenes in that manager to be removed when a later scene in this list is played.{{clr}}


==Keyvalues==
==Keyvalues==
* {{KV Targetname}}
{{KV Targetname}}
* '''scene''0-15'''''
{{KV|Scene 1|intn=scene0|to=Scene16|intn2=scene15|target_destination|The name of a {{ent|logic_choreographed_scene}}, or {{ent|logic_scene_list_manager}}.}}
: The name of a logic_choreographed_scene, or logic_scene_list_manager.
 
==Inputs==
==Inputs==
* {{I Targetname}}
{{I|Shutdown|Remove the manager and all scenes referenced by it (and all scenes referenced by {{ent|logic_scene_list_manager}}'s embedded in this one).}}
* '''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 ==
==Outputs==
* [[logic_choreographed_scene]]
* {{O Targetname}}
 
[[Category:Half-Life 2: Episode One Entities]]
[[Category:Choreography]]

Latest revision as of 06:14, 13 May 2025

C++ Class hierarchy
CSceneListManager
CLogicalEntity
CServerOnlyEntity
CBaseEntity
C++ sceneentity.cpp
Logic scene list manager.png

logic_scene_list_manager is a logical entity available in all Source Source games. It manages a list of logic_choreographed_scene entities. It stores choreo scenes so 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

Name (targetname) <string>[ Edit ]
The name that other entities refer to this entity by, via Inputs/Outputs or other keyvalues (e.g. parentname or target).
Also displayed in Hammer's 2D views and Entity Report.
See also:  Generic Keyvalues, Inputs and Outputs available to all entities

Scene 1 (scene0) to Scene16 (scene15) <targetname>
The name of a logic_choreographed_scene, or logic_scene_list_manager.

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