overte/examples/example
Zander Otavka 377a1a54ae Add abstraction layer for Overlays.h.
`examples/libraries/overlayUtils.js` allows you to manage overlays in an
object oriented manner.  Instead of:

    var billboard = Overlays.addOverlay("billboard", { visible: false });
    ...
    Overlays.editOverlay(billboard, { visible: true });
    ...
    Overlays.deleteOverlay(billboard);

You can now do:

    var billboard = new BillboardOverlay({ visible: false });
    ...
    billboard.visible = true;
    ...
    billboard.destroy();
2015-07-31 11:26:03 -07:00
..
audio Added .js file to examples/example/audio and added public bucket url functionality. 2015-07-27 12:14:50 -04:00
avatarcontrol restore camera lookAt and keepLookingAt features 2015-01-07 13:41:07 -08:00
entities Initial file placement into job. 2015-07-21 18:10:13 -04:00
games fixed merge conflicts and refactored hit effect to catch up with refactored rendering engine 2015-07-29 10:02:06 -07:00
metavoxels More Script updates 2015-01-06 22:32:45 -08:00
misc refined the names of the key light porperties in Stage 2015-04-21 11:04:14 -07:00
scripts ;) (added semicolons to js example) 2015-06-09 09:45:19 -07:00
ui Add abstraction layer for Overlays.h. 2015-07-31 11:26:03 -07:00
brownianFun.js added brownianFun script to apply random forces to balls in a pen 2015-05-29 17:02:51 -07:00
downloadInfoExample.js Add downloads information changed event for JavaScript 2015-01-07 11:20:46 -08:00
dynamicLandscape.js added meditative ocean landscape and common utilities file 2015-06-08 14:02:38 -07:00
entityCollisionExample.js Update header. 2015-05-26 13:27:37 -07:00
globalCollisionsExample.js typo 2015-05-25 17:23:22 -07:00
solarsystem.js refactoring variables and constants, fix update loop to continue over unlaunched satellites 2015-07-28 13:01:20 -07:00
soundToys.js Sound toys script (in examples/soundToys.js) 2015-06-04 14:20:19 -07:00