mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 22:43:40 +02:00
example
This commit is contained in:
parent
3358d58d01
commit
f34f90841d
1 changed files with 15 additions and 0 deletions
15
script-archive/entity-server-filter-example.js
Normal file
15
script-archive/entity-server-filter-example.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
function filter(p) {
|
||||
/* block comments are ok, but not double-slash end-of-line-comments */
|
||||
|
||||
/* Simple example: if someone specifies name, add an 'x' to it. Note that print is ok to use. */
|
||||
if (p.name) {p.name += 'x'; print('fixme name', p. name);}
|
||||
|
||||
/* This example clamps y. A better filter would probably zero y component of velocity and acceleration. */
|
||||
if (p.position) {p.position.y = Math.min(1, p.position.y); print('fixme p.y', p.position.y);}
|
||||
|
||||
/* Can also reject altogether */
|
||||
if (p.userData) { return false; }
|
||||
|
||||
/* If we make it this far, return the (possibly modified) properties. */
|
||||
return p;
|
||||
}
|
Loading…
Reference in a new issue