Humanoid Control for Unity v4
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | Protected Member Functions | Protected Attributes | Properties | List of all members
Passer.IntEventHandler Class Reference

Description

An event handler calling a function with an integer parameter.

Inheritance diagram for Passer.IntEventHandler:
Passer.EventHandler

Public Types

enum  Type {
  Never , OnStart , OnEnd , WhileActive ,
  WhileInactive , OnChange , Continuous
}
 The different types of events when the function is called. More...
 
enum  OverrideMode { Prepend , Append , Replace }
 

Public Member Functions

 IntEventHandler (Type eventType)
 
virtual void Update ()
 

Public Attributes

int minValue
 
int maxValue
 
int intTriggerLow = 0
 
int intTriggerHigh = 1
 
int multiplicationFactor = 1
 
Type eventType = Type.Continuous
 The event type for the function call.
 
bool eventNetworking = false
 For future use :-)
 
FunctionCall functionCall
 The function to call.
 
bool boolInverse = false
 Negate the boolean state before calling event trigger.
 
OverrideMode overrideMode
 

Protected Member Functions

override void UpdateVoid ()
 
override void UpdateBool ()
 
override void UpdateInt ()
 
override void UpdateFloat ()
 
void UpdateAnimationParameter ()
 
virtual void UpdateString ()
 
virtual void UpdateString (string s)
 
virtual void UpdateVector3 ()
 
virtual void UpdateGameObject ()
 
virtual void UpdateRigidbody ()
 
virtual void UpdateStringBool (string s)
 
virtual void UpdateStringFloat (string s)
 
virtual void UpdateStringInt (string s)
 
bool CheckCondition (bool active, bool changed, bool valueChanged)
 

Protected Attributes

bool initialized
 
bool _boolValue
 
bool boolChanged = true
 
int _intValue
 
bool intChanged
 
float _floatValue
 
bool floatChanged
 

Properties

virtual int value [get, set]
 
virtual bool boolValue [get, set]
 
bool isDead [get]
 True when the eventHandler is dead and can be removed.
 

Member Enumeration Documentation

◆ Type

enum Passer.EventHandler.Type
inherited

The different types of events when the function is called.

Enumerator
Never 

The function is never called.

OnStart 

The function is called when the event starts.

OnEnd 

The function is called when the event ends.

WhileActive 

The function is called every frame while the event is active.

WhileInactive 

The function is called every frame while the event is not active.

OnChange 

The function is called every time the event changes.

Continuous 

The functions is called every frame.

◆ OverrideMode

Enumerator
Prepend 

Prepend this handler before existing handlers.

Append 

Append this handler after existing handlers.

Replace 

Replace the topmost handler with this handler.

Member Function Documentation

◆ UpdateVoid()

override void Passer.IntEventHandler.UpdateVoid ( )
protectedvirtual

Reimplemented from Passer.EventHandler.

◆ UpdateBool()

override void Passer.IntEventHandler.UpdateBool ( )
protectedvirtual

Reimplemented from Passer.EventHandler.

◆ UpdateInt()

override void Passer.IntEventHandler.UpdateInt ( )
protectedvirtual

Reimplemented from Passer.EventHandler.

◆ UpdateFloat()

override void Passer.IntEventHandler.UpdateFloat ( )
protectedvirtual

Reimplemented from Passer.EventHandler.

Property Documentation

◆ isDead

bool Passer.EventHandler.isDead
getinherited

True when the eventHandler is dead and can be removed.

A function is dead when it does nothing. This is when the functionCall is not defined or when the target of the functionCall is empty


The documentation for this class was generated from the following file: