mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 19:04:27 +02:00
Use dimensions, not radius
This commit is contained in:
parent
ca556d7eb3
commit
af638a9963
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ function maybePlaySound(deltaTime) {
|
||||||
position: options.position,
|
position: options.position,
|
||||||
velocity: { x: 0, y: 0, z: 0},
|
velocity: { x: 0, y: 0, z: 0},
|
||||||
gravity: { x: 0, y: 0, z: 0},
|
gravity: { x: 0, y: 0, z: 0},
|
||||||
radius: 0.10,
|
dimensions: { x: 0.2, y: 0.2, z: 0.2 },
|
||||||
damping: 0.999,
|
damping: 0.999,
|
||||||
color: { red: 200, green: 0, blue: 0 }
|
color: { red: 200, green: 0, blue: 0 }
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue