mirror of
https://github.com/overte-org/overte.git
synced 2025-06-26 09:50:29 +02:00
`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(); |
||
---|---|---|
.. | ||
audio | ||
avatarcontrol | ||
entities | ||
games | ||
metavoxels | ||
misc | ||
scripts | ||
ui | ||
brownianFun.js | ||
downloadInfoExample.js | ||
dynamicLandscape.js | ||
entityCollisionExample.js | ||
globalCollisionsExample.js | ||
solarsystem.js | ||
soundToys.js |