Camera is now using animate2 but isn't actually using it yet. Just converted.
This commit is contained in:
parent
7bf7b25a10
commit
46cc21ec7b
8 changed files with 111 additions and 90 deletions
|
|
@ -1,74 +1,84 @@
|
|||
{
|
||||
"pan": {
|
||||
"_type": "Animation",
|
||||
"easing": 7,
|
||||
"motion": 7,
|
||||
"ease_rate": 0.001,
|
||||
"min_x": 0.0,
|
||||
"min_y": 0.0,
|
||||
"max_x": 0.0,
|
||||
"max_y": 0.0,
|
||||
"simple": true,
|
||||
"frames": 1,
|
||||
"speed": 0.01,
|
||||
"scaled": false,
|
||||
"stationary": true,
|
||||
"toggled": false,
|
||||
"flipped": false,
|
||||
"looped": false
|
||||
},
|
||||
"shake": {
|
||||
"_type": "Animation",
|
||||
"easing": 6,
|
||||
"motion": 1,
|
||||
"ease_rate": 0.05,
|
||||
"min_x": -10.0,
|
||||
"min_y": -10.0,
|
||||
"max_x": 10.0,
|
||||
"max_y": 10.0,
|
||||
"simple": true,
|
||||
"frames": 1,
|
||||
"speed": 0.01,
|
||||
"scaled": false,
|
||||
"stationary": true,
|
||||
"toggled": false,
|
||||
"flipped": false,
|
||||
"looped": false
|
||||
},
|
||||
"dolly": {
|
||||
"_type": "Animation",
|
||||
"easing": 1,
|
||||
"motion": 0,
|
||||
"ease_rate": 1.0,
|
||||
"min_x": 0.8,
|
||||
"min_y": 0.8,
|
||||
"max_x": 1.0,
|
||||
"max_y": 1.0,
|
||||
"simple": true,
|
||||
"frames": 1,
|
||||
"speed": 0.1,
|
||||
"scaled": true,
|
||||
"stationary": true,
|
||||
"toggled": false,
|
||||
"flipped": false,
|
||||
"looped": false
|
||||
},
|
||||
"bounce": {
|
||||
"_type": "Animation",
|
||||
"easing": 4,
|
||||
"motion": 2,
|
||||
"ease_rate": 0.001,
|
||||
"min_x": 0,
|
||||
"min_y": -20,
|
||||
"max_x": 0,
|
||||
"max_y": 0,
|
||||
"simple": true,
|
||||
"frames": 1,
|
||||
"speed": 0.01,
|
||||
"scaled": false,
|
||||
"stationary": true,
|
||||
"toggled": false,
|
||||
"flipped": false,
|
||||
"looped": false
|
||||
"cameras": {
|
||||
"sheet": {
|
||||
"frames": 1,
|
||||
"frame_width": 1024,
|
||||
"frame_height": 768
|
||||
},
|
||||
"sequences": {
|
||||
"idle": {"frames": [0], "durations": [800] },
|
||||
"pan": {"frames": [0], "durations": [800] },
|
||||
"shake": {"frames": [0], "durations": [800] },
|
||||
"dolly": {"frames": [0], "durations": [800] },
|
||||
"bounce": {"frames": [0], "durations": [800] }
|
||||
},
|
||||
"transforms": {
|
||||
"pan": {
|
||||
"min_x": 0.0,
|
||||
"min_y": 0.0,
|
||||
"max_x": 0.0,
|
||||
"max_y": 0.0,
|
||||
"flipped": false,
|
||||
"ease_rate": 5.0,
|
||||
"scaled": false,
|
||||
"toggled": false,
|
||||
"looped": false,
|
||||
"easing": "linear",
|
||||
"motion": "move_slide"
|
||||
},
|
||||
"shake": {
|
||||
"min_x": -10.0,
|
||||
"min_y": -10.0,
|
||||
"max_x": 10.0,
|
||||
"max_y": 10.0,
|
||||
"flipped": false,
|
||||
"ease_rate": 5.0,
|
||||
"scaled": false,
|
||||
"toggled": false,
|
||||
"looped": false,
|
||||
"easing": "normal_dist",
|
||||
"motion": "move_shake"
|
||||
},
|
||||
"dolly": {
|
||||
"min_x": 0.8,
|
||||
"min_y": 0.8,
|
||||
"max_x": 1.0,
|
||||
"max_y": 1.0,
|
||||
"flipped": false,
|
||||
"ease_rate": 3.0,
|
||||
"scaled": false,
|
||||
"toggled": false,
|
||||
"looped": false,
|
||||
"easing": "sine",
|
||||
"motion": "move_rush"
|
||||
},
|
||||
"bounce": {
|
||||
"min_x": 0,
|
||||
"min_y": -20,
|
||||
"max_x": 0,
|
||||
"max_y": 0,
|
||||
"flipped": false,
|
||||
"ease_rate": 3.0,
|
||||
"scaled": false,
|
||||
"toggled": false,
|
||||
"looped": false,
|
||||
"easing": "in_out_back",
|
||||
"motion": "move_bounce"
|
||||
}
|
||||
},
|
||||
"forms": {
|
||||
"idle": ["idle", "idle"],
|
||||
"pan": ["pan", "pan"],
|
||||
"dolly": ["dolly", "dolly"],
|
||||
"shake": ["shake", "shake"],
|
||||
"bounce": ["bounce", "bounce"]
|
||||
},
|
||||
"sounds": {
|
||||
"idle": [],
|
||||
"pan": [],
|
||||
"dolly": [],
|
||||
"shake": [],
|
||||
"bounce": []
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue