Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cannon物理clone BUg #483

Open
sheenli opened this issue Dec 15, 2020 · 0 comments
Open

cannon物理clone BUg #483

sheenli opened this issue Dec 15, 2020 · 0 comments

Comments

@sheenli
Copy link

sheenli commented Dec 15, 2020

表现

clone后的物理出现乱飞

原因

set angularVelocity(value: Vector3) { this._angularVelocity = value; if (this._btColliderObject) { var btValue: CANNON.Vec3= this.btColliderObject.angularVelocity; (this.isSleeping)&&(this.wakeUp()); btValue.set(value.x,value.y,value.z); this.btColliderObject.velocity = btValue; } }

解决办法

set angularVelocity(value: Vector3) { this._angularVelocity = value; if (this._btColliderObject) { var btValue: CANNON.Vec3= this.btColliderObject.angularVelocity; (this.isSleeping)&&(this.wakeUp()); btValue.set(value.x,value.y,value.z); this.btColliderObject.angularVelocity = btValue; } }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant