Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "name": "Lightswitch",
- "version": "1.0",
- "backgroundImage": "background.png",
- "types": {
- "lamp": {
- "states": {
- "on": {
- "image": "light_on.png"
- },
- "off": {
- "image": "light_off.png"
- }
- }
- },
- "switch": {
- "states": {
- "up": {
- "image": "switch_down.png"
- },
- "down": {
- "image": "switch_up.png"
- }
- }
- }
- },
- "items": {
- "LeftSwitch": {
- "x": "172px",
- "y": "65px",
- "width": "78px",
- "height": "56px",
- "type": "switch",
- "defaultState": "up"
- },
- "RightSwitch": {
- "x": "423px",
- "y": "64px",
- "width": "78px",
- "height": "56px",
- "type": "switch",
- "rotation": 180,
- "defaultState": "down"
- },
- "Lamp": {
- "x": "617px",
- "y": "53px",
- "width": "80px",
- "height": "80px",
- "type": "lamp",
- "defaultState": "on"
- }
- },
- "transitions": {
- "Off 1": {
- "LeftSwitch": "up",
- "RightSwitch": "up",
- "Lamp": "off"
- },
- "Off 2": {
- "LeftSwitch": "down",
- "RightSwitch": "down",
- "Lamp": "off"
- },
- "On 1": {
- "LeftSwitch": "up",
- "RightSwitch": "down",
- "Lamp": "on"
- },
- "On 2": {
- "LeftSwitch": "down",
- "RightSwitch": "up",
- "Lamp": "on"
- }
- },
- "sequences": {
- "All": {
- "steps": {
- "Off 1": {
- "transition": "Off 1",
- "duration": 1
- },
- "On 1": {
- "transition": "On 1",
- "duration": 1
- },
- "Off 2": {
- "transition": "Off 2",
- "duration": 1
- },
- "On 2": {
- "transition": "On 2",
- "duration": 1
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement