mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 17:23:29 +02:00
Fixed spelling mistakes
This commit is contained in:
parent
2e95ca7947
commit
542d8a4b6c
1 changed files with 3 additions and 2 deletions
|
@ -52,8 +52,9 @@
|
|||
function castRay(event) {
|
||||
var pickRay = Camera.computePickRay(event.x, event.y);
|
||||
// In this example every entity will be pickable except the entities in the blacklist array
|
||||
// the third arg is the whitelist array,a nd the fourth and final is the blacklist array
|
||||
// the third argument is the whitelist array,and the fourth and final is the blacklist array
|
||||
var pickResults = Entities.findRayIntersection(pickRay, true, [], [blackListBox]);
|
||||
|
||||
// With below example, only entities added to whitelist will be pickable
|
||||
// var pickResults = Entities.findRayIntersection(pickRay, true, [whiteListBox], []);
|
||||
|
||||
|
|
Loading…
Reference in a new issue