UNPKG

theta-client-react-native

Version:

This library provides a way to control RICOH THETA using.

33 lines (31 loc) 1.02 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ModeMemoryEnum = void 0; /** * Mode Memory * * The default setting is "off", preserving the previous behavior. * When set to "on", the following shooting parameters will be retained even after power-off or sleep: * - Still image stitching process * - Exposure program / Aperture / Shutter speed / ISO sensitivity / Exposure compensation * - White balance mode / Color temperature setting * - Filters * - Interval shooting: number of shots / interval * - Multi-bracket shooting: number of shots / parameters * - Interval composite shooting: duration / intermediate saving * - Time-shift shooting settings (excluding shooting order) * - Burst shooting options * - Geotag data */ const ModeMemoryEnum = exports.ModeMemoryEnum = { /** Undefined value */ UNKNOWN: 'UNKNOWN', /** ON */ ON: 'ON', /** OFF */ OFF: 'OFF' }; /** type definition of ModeMemoryEnum */ //# sourceMappingURL=option-mode-memory.js.map