The SpringConstraint class represents a type of constraint that simulates spring behavior in a physics simulation.

SpringConstraint 类表示一种在物理模拟中模拟弹簧行为的约束类型。

层级 (查看层级一览)

属性

Extra data of the node.

组件的额外数据。IDE内部使用。

_id: number

Unique identifier for the component.

组件的唯一标识。

_singleton: boolean

Whether the component is a singleton, meaning only one instance of this type of script can be added to the same node.

是否为单例,即同一个节点只能添加此类型的脚本一次。

owner: Sprite3D

Gets the owner Node to which the component belongs.

获取组件所属的 Node 节点。

runInEditor: boolean

Whether the script can run in the IDE environment.

是否可以在 IDE 环境中运行。

scriptPath: string

The path of the script file.

脚本文件的路径。

访问器

  • get minDistance(): number

    返回 number

    the minimum distance at which a spring constraint begins to exert a separating force when the distance between objects reaches or falls below this value. If the objects get closer than this, the spring applies a separating force to push them apart to a safe distance. When the distance is at or above the set value, the spring doesn't exert any stretching force.

    弹簧关节在物体间距达到或小于此值时开始施加分离力的最小距离。 如果物体间距小于这个值,弹簧会施加分离力将它们推开到安全距离。而当距离达到或超过设定值时,弹簧不会施加任何拉伸力。

  • set minDistance(value: number): void
  • get tolerance(): number

    返回 number

    refers to the allowable margin of error in a physics engine, used to handle contact or constraints between objects, ensuring the system has a certain degree of tolerance in calculations.

    弹簧的误差容限。 用于处理物体之间的接触或约束时,确保系统在计算中具有一定的容忍度,以避免由于数值计算精度问题导致的不稳定或错误行为。

  • set tolerance(value: number): void

方法

  • 返回 void

    Executed after the component is activated. At this point, all nodes and components have been created. This method is executed only once.

    组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次。

  • 返回 void

    Resets the component's parameters to their default values. If this function is implemented, the component will be reset and automatically recycled for future use. If not reset, it will not be recycled for reuse.

    将组件的参数重置为默认值。如果实现了这个函数,组件将被重置并自动回收到对象池,方便下次复用。 如果没有重置,则不会进行回收复用。

  • 返回 void

    Executed every frame during the update phase. Avoid writing complex loop logic or using the getComponent method here.

    每帧更新时执行,在 update 阶段。尽量不要在这里写大循环逻辑或使用 getComponent 方法。