Mouse joint: A physics constraint used to simulate the user dragging an object with the mouse. It typically allows a rigid body to follow the mouse cursor's movement while also being influenced by other physics effects such as collisions and gravity.
Whether the component is a singleton, meaning only one instance of this type of script can be added to the same node.
Zh
是否为单例,即同一个节点只能添加此类型的脚本一次。
anchor
anchor:any[]
En
The connection point of a joint is offset from the position of the upper left corner of its own rigid body. If not set, it is used as the connection point based on the mouse click point. Effective only on the first setting.
The self rigid body of a joint, effective only on the first setting.
Zh
[首次设置有效]关节的自身刚体。
访问器
awaked
getawaked():boolean
返回 boolean
En
whether the component has been awakened.
Zh
组件是否已经被唤醒。
damping
getdamping():number
返回 number
En
The damping ratio of the body when returning to the anchor, with a recommended value between 0 and 1.
Zh
刚体在回归到节点过程中受到的阻尼比,建议取值在 0 到 1 之间。
setdamping(value:number):void
参数
value: number
返回 void
destroyed
getdestroyed():boolean
返回 boolean
En
whether the component has been destroyed.
Zh
组件是否已经被销毁。
enabled
getenabled():boolean
返回 boolean
En
whether the component is enabled.
Zh
是否启用组件。
setenabled(value:boolean):void
参数
value: boolean
返回 void
frequency
getfrequency():number
返回 number
En
The vibration frequency of the spring system, which can be considered as the spring's elasticity coefficient. The frequency should typically be less than half the time step frequency.
Zh
弹簧系统的振动频率,可以视为弹簧的弹性系数,通常频率应该小于时间步长频率的一半。
setfrequency(value:number):void
参数
value: number
返回 void
hideFlags
gethideFlags():number
返回 number
En
The hide flags that determine the hiding behavior of the component.
Zh
确定组件隐藏行为的标志。
sethideFlags(value:number):void
参数
value: number
返回 void
id
getid():number
返回 number
En
The unique identifier for the component.
Zh
组件的唯一标识。
joint
getjoint():any
返回 any
En
[read-only] Native joint object.
Zh
[只读]原生关节对象。
maxForce
getmaxForce():number
返回 number
En
Used to limit the maximum force that the mouse joint can apply when attempting to move an object towards the mouse position, preventing excessive force that could lead to abnormal behavior or unnatural effects.
Checks if the component has a specific hide flag set.
Zh
检查组件是否设置了特定的隐藏标志。
onAdded
onAdded():void
返回 void
En
Called after the component is added to a node. Unlike Awake, onAdded is called even if the node is not active.
Zh
组件被添加到节点后调用,与 onAwake 不同的是,即使节点未激活也会调用 onAdded。
onAwake
onAwake():void
返回 void
En
Executed after the component is activated. At this point, all nodes and components have been created. This method is executed only once.
Zh
组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次。
onDestroy
onDestroy():void
返回 void
En
Executed when the node is destroyed manually.
Zh
手动调用节点销毁时执行。
onDisable
onDisable():void
返回 void
En
Executed when the component is disabled, such as when the node is removed from the stage.
Zh
组件被禁用时执行,比如从节点从舞台移除后。
onEnable
onEnable():void
返回 void
En
Executed after the component is enabled, such as when the node is added to the stage.
Zh
组件被启用后执行,比如节点被添加到舞台后。
可选onLateUpdate
onLateUpdate():void
返回 void
En
Executed every frame during the late update phase, after the update phase.
Zh
每帧更新时执行,在 late update 阶段,update 阶段之后。
可选onPostRender
onPostRender():void
返回 void
En
Executed after rendering.
Zh
渲染之后执行。
可选onPreRender
onPreRender():void
返回 void
En
Executed before rendering.
Zh
渲染之前执行。
可选onReset
onReset():void
返回 void
En
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.
En
Mouse joint: A physics constraint used to simulate the user dragging an object with the mouse. It typically allows a rigid body to follow the mouse cursor's movement while also being influenced by other physics effects such as collisions and gravity.
Zh
鼠标关节:一种用来模拟用户用鼠标拖拽物体的物理约束。它通常会使得一个刚体可以跟随鼠标移动,但同时也能受到其他物理效果如碰撞、重力等的影响。