Sha256: 751637257b7285aad02b1651418ca45f3d0bb583794d9b5bda5b30a0d519cf7a
Contents?: true
Size: 805 Bytes
Versions: 9
Compression:
Stored size: 805 Bytes
Contents
/*global define*/ define(['Core/Enumeration'], function(Enumeration) { "use strict"; /** * Specifies how to handle mouse events in columbus view mode. * * @exports CameraColumbusViewMode * @see ScreenSpaceCameraController */ var CameraColumbusViewMode = { /** * The camera is free to move about anywhere. * * @type {Enumeration} * @constant * @default 0 */ FREE : new Enumeration(0, 'FREE'), /** * The camera is locked looking at a location, but is free to rotate about that single point. * * @type {Enumeration} * @constant * @default 1 */ LOCKED : new Enumeration(1, 'LOCKED') }; return CameraColumbusViewMode; });
Version data entries
9 entries across 9 versions & 1 rubygems