class GLXFInternalNode(val entity: Entity, transform: GLXFNodeTransform, var name: String? = null, asset: GLXFAsset = GLXFAsset.nullGLXFAsset(), children: MutableList<GLXFNode> = mutableListOf<GLXFNode>(), childrenIndices: MutableSet<Int> = mutableSetOf<Int>(), isRoot: Boolean = true) : GLXFNode
GLXFInternalNode
(
entity
, transform
, name
, asset
, children
, childrenIndices
, isRoot
)
|
Signature
constructor(entity: Entity, transform: GLXFNodeTransform, name: String? = null, asset: GLXFAsset = GLXFAsset.nullGLXFAsset(), children: MutableList<GLXFNode> = mutableListOf<GLXFNode>(), childrenIndices: MutableSet<Int> = mutableSetOf<Int>(), isRoot: Boolean = true) Parameters entity: Entitytransform: GLXFNodeTransformname: String?asset: GLXFAssetchildren: MutableList
The children of the node.
childrenIndices: MutableSet
The indices of the children of the node.
isRoot: Boolean
Whether the node is the root of the GLXF file.
Returns GLXFInternalNode |
entity
: Entity
[Get] |
The entity associated with the node.
Signature
val entity: Entity |
name
: String?
[Get][Set] |
The name of the node.
Signature
var name: String? |
getChildren
()
|
gets a list of the children nodes
Signature
fun getChildren(): List<GLXFNode> Returns List |