mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-25 15:30:40 +02:00
end of day
This commit is contained in:
parent
af91a06897
commit
d5a28565ce
1 changed files with 8 additions and 3 deletions
|
@ -11,9 +11,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
var BALL_DIMENSIONS = {
|
var BALL_DIMENSIONS = {
|
||||||
x: 0.025,
|
x: 0.05,
|
||||||
y: 0.025,
|
y: 0.05,
|
||||||
z: 0.025
|
z: 0.05
|
||||||
}
|
}
|
||||||
var BALL_COLOR = {
|
var BALL_COLOR = {
|
||||||
red: 255,
|
red: 255,
|
||||||
|
@ -58,6 +58,11 @@
|
||||||
dynamic: true,
|
dynamic: true,
|
||||||
collisionless:false,
|
collisionless:false,
|
||||||
damping:0.6,
|
damping:0.6,
|
||||||
|
gravity:{
|
||||||
|
x:0,
|
||||||
|
y:-9.8,
|
||||||
|
z:0
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
ball = Entities.addEntity(properties);
|
ball = Entities.addEntity(properties);
|
||||||
|
|
Loading…
Reference in a new issue