UniVRM/Packages/VRM10/Runtime/Format/ExpressionsNodeTransform/Format.g.cs
2026-03-24 14:06:39 +09:00

44 lines
1.2 KiB
C#

// This file is generated from JsonSchema. Don't modify this source code.
using System;
using System.Collections.Generic;
namespace UniGLTF.Extensions.VRMC_vrm_expressions_node_transform
{
public class NodeTransformBind
{
// Dictionary object with extension-specific objects.
public object Extensions;
// Application-specific data.
public object Extras;
// The node index.
public int? Node;
// The node's unit quaternion rotation in the order (x, y, z, w), where w is the scalar.
public float[] Rotation;
// The node's non-uniform scale, given as the scaling factors along the x, y, and z axes.
public float[] Scale;
// The node's translation along the x, y, and z axes.
public float[] Translation;
}
public class VRMC_vrm_expressions_node_transform
{
public const string ExtensionName = "VRMC_vrm_expressions_node_transform";
// Dictionary object with extension-specific objects.
public object Extensions;
// Application-specific data.
public object Extras;
// Specify a node transform
public List<NodeTransformBind> NodeTransformBinds;
}
}