12 lines
No EOL
363 B
JavaScript
12 lines
No EOL
363 B
JavaScript
(function () {
|
|
|
|
this.preload = function (entityID) {
|
|
|
|
},
|
|
this.collisionWithEntity = function (myID, otherID, collision) {
|
|
print("Collision has occurred");
|
|
if (Entities.getEntityProperties(otherID, ['name']).name === "WatchCollider") {
|
|
AudioDevice.toggleMute();
|
|
}
|
|
}
|
|
}); |