overte-Armored-Dragon/interface
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
..
external The 3Dconnextion files from https://github.com/highfidelity/hifi/pull/5351 2015-07-27 19:04:49 +02:00
icon
resources Working on line height 2015-07-17 14:33:32 -07:00
src Add abstraction layer for Overlays.h. 2015-07-31 11:26:03 -07:00
ui Rename and refactor eye deflection slider 2015-07-16 14:05:34 -07:00
CMakeLists.txt A simpler way to add the NSIGHT_FOUND define to all the projects depending on GPU 2015-07-29 14:42:24 -07:00
interface_en.ts
InterfaceVersion.h.in