Env extinguisherjet: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Cleanup)
(Forgot some info)
Line 2: Line 2:


{{stub}}
{{stub}}
{{obsolete|entity=1}}
{{ent not in game|in sdk=1}}
{{CD|CExtinguisherJet|file1=1}}
{{ent not in fgd}}
{{ent not in fgd}}



Revision as of 20:55, 10 June 2025

Warning icon.png
This article has been marked as a candidate for speedy deletion for the following reason:
What is this from ?
If you object to this decision, then please discuss why here (If you make a discussion section also create this redirect page). If this page doesn't meet the criteria for speedy deletion, then please remove this notice, but do not remove it from pages that you have created yourself
Administrators / Moderators - Remember to check if anything links here and the page history before deleting.

Stub

This article or section is a stub. You can help by expanding it.

Obsolete-notext.png
This entity is obsolete. Its use is discouraged. It may only exist/function in older engine branches.
Info-red.png
This entity is not in the game by default, but still has code available for it in the SDK.
This feature is not available anymore.
C++ Class hierarchy
CExtinguisherJet
CBaseEntity
C++ extinguisherjet.cpp
Icon-NotInFGD.png
This entity is not in the FGD by default.
See below for instructions on making it available.

Entity description

Fire Extinguisher Jet.

KeyValues

Length (length) <integer>
Size of jet (size) <integer>
Radius of extinguishment at impact point (radius) <integer>
Strength of the extinguisher (strength) <float>
Start On (enabled) <boolean>
  • 0: No
  • 1: Yes

Inputs

Enable
Enables the extinguisher
Disable
Disables the extinguisher
Enable
Toggles the extinguisher

FGD Code

@PointClass base(Targetname, Parentname, Angles) = env_extinguisherjet : "Fire Extinguisher Jet"
[
	length(integer) : "Length" : 128
	size(integer)	: "Size of jet" : 8
	radius(integer)	: "Radius of extinguishment at impact point" : 32
	strength(float)	: "Strength of the extinguisher" : "0.97"
	
	enabled(choices) : "Start On" : 1 =
	[
		0 : "No"
		1 : "Yes"
	]

	input Enable(void) : "Enables the extinguisher"
	input Disable(void) : "Disables the extinguisher"
	input Toggle(void) : "Toggles the extinguisher"
]

See Also