Logic compare: Difference between revisions
Jump to navigation
Jump to search
Note:Some Health based entities like func_physbox. will base its percentage from
mNo edit summary |
(SetValueCompare on func_physbox will only account for the m_iMaxHealth (hp that it spawns with)) |
||
Line 16: | Line 16: | ||
{{IO|SetValue|Set the value that will be compared against the compare value.|param=float}} | {{IO|SetValue|Set the value that will be compared against the compare value.|param=float}} | ||
{{IO|SetValueCompare|Set the value that will be compared against the compare value and performs the comparison.|param=float}} | {{IO|SetValueCompare|Set the value that will be compared against the compare value and performs the comparison.|param=float}} | ||
{{note|Some Health based entities like {{ent|func_physbox}}. will base its percentage from<code>m_iMaxHealth</code> when using <code>OnHealthChanged</code> so any change in <code>health</code> will not be accounted for.}} | |||
{{IO|SetCompareValue|Set the compare value.|param=float}} | {{IO|SetCompareValue|Set the compare value.|param=float}} | ||
{{IO|Compare|Force a compare of the input value with the compare value.}} | {{IO|Compare|Force a compare of the input value with the compare value.}} |
Revision as of 11:28, 6 December 2022
![]() |
---|
CLogicCompare |
![]() |
Template:Base point It examines the relationship between two numbers ("value" and "compare value"), and fires appropriate output(s).
The equation is (value - compare value).
Keyvalues
- Initial value (InitialValue) <integer>
- Initial value for the input value.
- Compare value (CompareValue) <integer>
- The value to compare against.
- 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
Inputs
- SetValue <float >
- Set the value that will be compared against the compare value.
- SetValueCompare <float >
- Set the value that will be compared against the compare value and performs the comparison.

m_iMaxHealth
when using OnHealthChanged
so any change in health
will not be accounted for.- SetCompareValue <float >
- Set the compare value.
- Compare
- Force a compare of the input value with the compare value.
Outputs
- OnLessThan <float >
- Fired when the input value is less than the compare value. Sends the input value as data.
- OnEqualTo <float >
- Fired when the input value is equal to the compare value. Sends the input value as data.
- OnNotEqualTo <float >
- Fired when the input value is different from the compare value. Sends the input value as data.
- OnGreaterThan <float >
- Fired when the input value is greater than the compare value. Sends the input value as data.