Syntax
| C# |
|---|
public abstract void SetValue (
float[] value
) |
Example
| C# |
|---|
Vrml.EAI.Node transform = ...;
Vrml.EAI.Field.EventInSFVec3f set_translation = (Vrml.EAI.Field.EventInSFVec3f)transform.GetEventIn("set_translation");
float x = 0.0f;
float y = 1.0f;
float z = 0.0f;
float[] translation = new float[] { x, y, z };
set_translation.SetValue(translation);
|