ModelNodeLinkComponent Class
Namespace: Stride.EngineAssembly: Stride.Engine.dll
Derived from ModelNodeLinkComponent:
[DataContract("ModelNodeLinkComponent")]
[Display("Bone link", null, Expand = ExpandRule.Once)]
[DefaultEntityComponentProcessor(typeof(ModelNodeLinkProcessor))]
[ComponentOrder(1500)]
[ComponentCategory("Model")]
public sealed class ModelNodeLinkComponent : EntityComponent, IIdentifiable
| Name | Description | |
|---|---|---|
| Properties | ||
| IsValid | ||
| NodeName | Gets or sets the name of the node. |
|
| Target | Gets or sets the model which contains the hierarchy to use. |
|
| Methods | ||
| ValidityCheck() | ||
| ValidityCheck(ModelComponent) | ||
Properties
IsValid
public bool IsValid { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
NodeName
Gets or sets the name of the node.
[DataMember(20)]
[Display("Bone", null)]
public string NodeName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The name of the node. |
Target
Gets or sets the model which contains the hierarchy to use.
[DataMember(10)]
[Display("Model (parent if not set)", null)]
public ModelComponent Target { get; set; }
Property Value
| Type | Description |
|---|---|
| ModelComponent | The model which contains the hierarchy to use. |
Methods
ValidityCheck()
public void ValidityCheck()
ValidityCheck(ModelComponent)
public void ValidityCheck(ModelComponent targetToValidate)
Parameters
| Type | Name | Description |
|---|---|---|
| ModelComponent | targetToValidate |