mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 21:03:42 +02:00
target script attached in reset spawner
This commit is contained in:
parent
6573b3c71e
commit
c545f53c75
2 changed files with 4 additions and 5 deletions
|
@ -32,8 +32,7 @@
|
|||
|
||||
_this.collisionWithEntity = function(myID, otherID, collisionInfo) {
|
||||
//we dont actually use any of the parameters above, since we don't really care what we collided with, or the details of the collision.
|
||||
print('JBP TARGET COLLISION')
|
||||
//5 seconds after a collision, upright the target. protect from multiple collisions in a short timespan with the 'shouldUntip' variable
|
||||
//5 seconds after a collision, upright the target. protect from multiple collisions in a short timespan with the 'shouldUntip' variable
|
||||
if (_this.shouldUntip) {
|
||||
//in Hifi, preface setTimeout with Script.setTimeout
|
||||
Script.setTimeout(function() {
|
||||
|
@ -47,11 +46,10 @@
|
|||
}
|
||||
|
||||
_this.untip = function() {
|
||||
print('JBP SHOULD UNTIP')
|
||||
var props = Entities.getEntityProperties(this.entityID);
|
||||
var rotation = Quat.safeEulerAngles(props.rotation)
|
||||
if (rotation.x > 3 || rotation.x < -3 || rotation.z > 3 || rotation.z < -3) {
|
||||
print('too much pitch or roll, fix it');
|
||||
print('home target - too much pitch or roll, fix it');
|
||||
|
||||
//we zero out the velocity and angular velocity
|
||||
Entities.editEntity(_this.entityID, {
|
||||
|
|
|
@ -563,7 +563,8 @@
|
|||
reset: true
|
||||
}
|
||||
}),
|
||||
density:100,
|
||||
script: 'atp:/pingPongGun/target.js',
|
||||
density: 100,
|
||||
dynamic: true
|
||||
}
|
||||
var target = Entities.addEntity(targetProperties);
|
||||
|
|
Loading…
Reference in a new issue