XFileGuid.FloatKeys Field (Microsoft.DirectX.Direct3D)

Retrieves the globally unique identifier (GUID) for an array of floating-point numbers (floats) and the number of floats in the array.

Definition

Visual Basic Public Shared FloatKeys As GuidLeave Site
C# public static GuidLeave Site FloatKeys;
C++ public: static GuidLeave Site FloatKeys;
JScript public static var FloatKeys : GuidLeave Site

Field Value

System.Guid
A GuidLeave Site value that is used for templates that consist of an array of floating-point numbers, and the number of floats in that array in XFiles (.x).

This field is read-only. 

Remarks

This field is used for defining sets of animation keys.

The following is a FloatKeys template.

[C#]template FloatKeys
{
    < 10DD46A9-775B-11cf-8F52-0040333594A3 >
    DWORD nValues;
    array float values[nValues];
}

Where:

  • nValues - Number of floats.
  • values[nValues] - Array of float values.