Advertisement
lokivoid

make super block

Sep 18th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.79 KB | None | 0 0
  1. MakeSuperBlock
  2.     ShowText 1
  3.     RaiseTappedBlock 0.5
  4.     RadialEffect
  5.         when:collision
  6.             Move easein
  7.                 end moved
  8.                     Destroy 0
  9.     whenAll:moved
  10.         Merge
  11.         Explode
  12.         Create fadein // superblock
  13.  
  14. {
  15.     "id":"MakeSuperBlock",
  16.     "children":
  17.     [
  18.         {
  19.             "id":"ShowText",
  20.             "duration": 1
  21.         },
  22.         {
  23.             "id": "RaiseTappedBlock",
  24.             "duration": 0.5
  25.         },
  26.         {
  27.             "id": "RadialEffect",
  28.             "when:collision":
  29.             [
  30.                 {
  31.                     "id":"Move",
  32.                     "curve":"easein",
  33.                     "children":
  34.                     [
  35.                         {
  36.                             "id":"moved",
  37.                             "snap": "end"
  38.                             "children":
  39.                             [
  40.                                 {
  41.                                     "id":"Destroy",
  42.                                     "duration":0
  43.                                 }
  44.                             ]
  45.                         }
  46.                     ]
  47.                 }
  48.             ]
  49.         }
  50.     ],
  51.     "whenAll:moved":
  52.     [
  53.         {"id":"Merge"},
  54.         {"id":"Explode"},
  55.         {
  56.             "id":"Create",
  57.             "fadein": true
  58.         }
  59.     ]
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement