Returns the current value of the SFFloat event-out slot.
Declaring type: EventOutSFFloat
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract float GetValue ()
Return Value
The float value.
Collapse/Expand Example
The following example demonstrates how to get the transparency of an object:
C#
Vrml.EAI.Node material = ...;
Vrml.EAI.Field.EventOutSFFloat transparency_changed = (Vrml.EAI.Field.EventOutSFFloat)material.GetEventOut("transparency_changed");
System.Console.WriteLine("transparency = " + transparency_changed.GetValue());