We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b00d773 commit fa249ecCopy full SHA for fa249ec
src/core/entities/App.js
@@ -217,6 +217,7 @@ export class App extends Entity {
217
this.target.position.copy(this.root.position)
218
this.target.quaternion.copy(this.root.quaternion)
219
this.target.rotation.reorder('YXZ')
220
+ document.body.style.cursor = 'grabbing'
221
}
222
if (this.control._lifting) {
223
// if shift is down we're raising and lowering the app
@@ -283,6 +284,8 @@ export class App extends Entity {
283
284
state: this.data.state,
285
})
286
this.build()
287
+ this.target = null
288
+ document.body.style.cursor = 'default'
289
290
291
// if someone else is moving the app, interpolate updates
0 commit comments