Func trackautochange: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (Robot: fixing template case.)
(Cleanup)
Line 1: Line 1:
{{wrongtitle|title=func_trackautochange}}
{{base brush|func_trackautochange}} It works as a rotating/moving platform that will carry a train to a new track. It must be larger in X-Y planar area than the train, since it must contain the train within these dimensions in order to operate when the train is near it.  
{{base_brush}}
 
==Entity Description==
A [[brush entity]] that works as a rotating/moving platform that will carry a train to a new track. It must be larger in X-Y planar area than the train, since it must contain the train within these dimensions in order to operate when the train is near it.  
 
See also [[func_trackchange]].
 
{{brushmodel}}


==Availability==
==Availability==
Line 13: Line 5:
{{in code|class=class_c_func_track_auto.html CFuncTrackAuto|file=trains_8cpp-source.html trains.cpp}}
{{in code|class=class_c_func_track_auto.html CFuncTrackAuto|file=trains_8cpp-source.html trains.cpp}}


==Keyvalues==
== Keyvalues ==
*{{KV TrackChange}}
{{KV|Minimum Light Level|string|The minimum level of ambient light that hits this brush.}}
*'''_minlight'''
{{KV Trackchange}}
:<string> The minimum level of ambient light that hits this brush.


==Flags==
== Flags ==
*{{Fl Trackchange}}
{{Fl Trackchange}}


==Inputs==
== Inputs ==
*{{I TrackChange}}
{{IO|Trigger|Trigger the track change.}}
*'''Trigger'''
:Trigger the track change.


==Outputs==
== See also ==
*{{O TrackChange}}
* [[func_trackchange]]

Revision as of 10:53, 25 July 2011

Template:Base brush It works as a rotating/moving platform that will carry a train to a new track. It must be larger in X-Y planar area than the train, since it must contain the train within these dimensions in order to operate when the train is near it.

Availability

Template:In game Template:Game-base Template:In code

Keyvalues

Minimum Light Level ([todo internal name (i)]) <string>
The minimum level of ambient light that hits this brush.

Template:KV Trackchange

Flags

Auto Activate train : [1]
Relink track : [2]
Start at Bottom : [8]
Platform starts at the bottom track instead of the top one.
Rotate Only : [16]
X Axis : [64]
Train rotates around the X-axis instead of the Z-axis. Can be combined with Y Axis.
Y Axis : [128]
Train rotates around the Y-axis instead of the Z-axis. Can be combined with X Axis.

Inputs

Trigger
Trigger the track change.

See also