mirror of
https://github.com/overte-org/overte.git
synced 2025-04-27 21:55:58 +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(); |
||
---|---|---|
.. | ||
dialogExample.js | ||
fileBrowserExample.js | ||
floatingUIExample.js | ||
LODManagerExample.js | ||
menuExample.js | ||
overlaysExample.js | ||
textInputOverlayExample.js | ||
windowExample.js |