Template:KV BaseVehicle: Difference between revisions
Jump to navigation
Jump to search
Deprecated (talk | contribs) m (Added to Keyvalue Templates Category) |
Gatelych83 (talk | contribs) mNo edit summary |
||
Line 1: | Line 1: | ||
{{ScrollBox|title=BaseVehicle| | {{ScrollBox|title=BaseVehicle| | ||
; Vehicle Script File <code><[[string]]></code> | ; Vehicle Script File <code>(vehiclescript)</code><code><[[string]]></code> | ||
: The vehicle script files contained in <code>scripts\vehicles\</code> define the behaviour and handling of a vehicle. It is important to match the right script to the right entity/model: | : The vehicle script files contained in <code>scripts\vehicles\</code> define the behaviour and handling of a vehicle. It is important to match the right script to the right entity/model: | ||
:* [[prop_vehicle_airboat]]: <code>airboat.txt</code> | :* [[prop_vehicle_airboat]]: <code>airboat.txt</code> | ||
Line 17: | Line 17: | ||
:* There is also <code>reference_vehicle.txt</code>, which you can modify to make your own vehicle or use as-is. | :* There is also <code>reference_vehicle.txt</code>, which you can modify to make your own vehicle or use as-is. | ||
:* [[prop_vehicle_sin]]: <code>sincar.txt</code> / <code>sincar_pit.txt</code> {{sin only}} | :* [[prop_vehicle_sin]]: <code>sincar.txt</code> / <code>sincar_pit.txt</code> {{sin only}} | ||
; Scale of action input / framerate <code><[[float]]></code> | ; Scale of action input / framerate <code>(actionScale)</code> <code><[[float]]></code> | ||
: {{todo|How fast the vehicle turns/accelerates?}} | : {{todo|How fast the vehicle turns/accelerates?}} | ||
{{KV prop_static_base}} | {{KV prop_static_base}} |
Revision as of 12:18, 23 September 2020
BaseVehicle:
- Vehicle Script File
(vehiclescript)
<string>
- The vehicle script files contained in
scripts\vehicles\
define the behaviour and handling of a vehicle. It is important to match the right script to the right entity/model:- prop_vehicle_airboat:
airboat.txt
- prop_vehicle_apc:
apc.txt
/apc_npc.txt
- prop_vehicle_crane:
crane.txt
- prop_vehicle_prisoner_pod:
prisoner_pod.txt
- prop_vehicle_jeep: Template:EP2 add /
jeep_test.txt
- prop_vehicle_choreo_generic:
choreo_vehicle.txt
choreo_vehicle_ep1_dogintro.txt
choreo_vehicle_ep2_barn1.txt
choreo_vehicle_ep2_hangar.txt
choreo_vehicle_ep2_intro.txt
choreo_vehicle_ep2_Outland_02.txt
choreo_vehicle_ep2_playertrapped.txt
- There is also
reference_vehicle.txt
, which you can modify to make your own vehicle or use as-is. - prop_vehicle_sin:
sincar.txt
/sincar_pit.txt
Template:Sin only
- prop_vehicle_airboat:
- Scale of action input / framerate
(actionScale)
<float>
- Todo: How fast the vehicle turns/accelerates?
Global:
- Global Entity Name (globalname) <string>
- Name by which this entity is linked to another entity in a different map. When the player transitions to a new map, entities in the new map with globalnames matching entities in the previous map will have the previous map's state copied over their state.
Origin:
- Origin (X Y Z) (origin) <origin>
- The position of this entity's center in the world. Rotating entities typically rotate around their origin.
- Name (targetname) <string>[ Edit ]
- The name that other entities refer to this entity by, via Inputs/Outputs or other keyvalues (e.g.
parentname
ortarget
).
Also displayed in Hammer's 2D views and Entity Report.See also: Generic Keyvalues, Inputs and Outputs available to all entities
GMODSandbox:
- Allow Physics Gun (gmod_allowphysgun) <boolean> (only in
)
- If set, players cannot use Physics Gun on this entity.
- Sandbox Tool Whitelist (gmod_allowtools) <string> (only in
)
- If set, only given tools can be used on this entity. You need to supply the tool class names, the names of the
.lua
files of those tools. This also includes the context menu properties!