Reference to a SFFloat event-in slot.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract class EventInSFFloat :  EventIn
Collapse/Expand Remarks
Use this class to write values into SFFloat event-in slots.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
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);