Reference to a SFFloat event-in slot.
C# |
---|
public abstract class EventInSFFloat : |
EventIn
|
|
Click here to see the list of members.
The following example demonstrates how to send a
new fraction value to a PositionInterpolator node:
C# |
---|
Vrml.EAI.Node positionInterpolator = ...;
Vrml.EAI.Field.EventInSFFloat set_fraction = (Vrml.EAI.Field.EventInSFFloat)positionInterpolator.GetEventIn("set_fraction");
set_fraction.SetValue(0.5f);
|