-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Dibuat berdasarkan video youtube cocos - Belum bisa rotasi dari bird itu sendiri - Pipa sudah masuk - Menabrak pipa, atas layar, dan ground mengeluarkan game over - Game Over Jalan - Score jalan - max score jalan - try again jalan - Font jalan
- Loading branch information
1 parent
c9228b1
commit 96a52fa
Showing
46 changed files
with
271 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
System.register([], function (_export, _context) { | ||
"use strict"; | ||
|
||
var cc, Application; | ||
|
||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
|
||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } | ||
|
||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } | ||
|
||
return { | ||
setters: [], | ||
execute: function () { | ||
_export("Application", Application = /*#__PURE__*/function () { | ||
function Application() { | ||
_classCallCheck(this, Application); | ||
|
||
this.settingsPath = 'src/settings.json'; | ||
this.showFPS = false; | ||
} | ||
|
||
_createClass(Application, [{ | ||
key: "init", | ||
value: function init(engine) { | ||
cc = engine; | ||
cc.game.onPostBaseInitDelegate.add(this.onPostInitBase.bind(this)); | ||
cc.game.onPostSubsystemInitDelegate.add(this.onPostSystemInit.bind(this)); | ||
} | ||
}, { | ||
key: "onPostInitBase", | ||
value: function onPostInitBase() {// cc.settings.overrideSettings('assets', 'server', ''); | ||
// do custom logic | ||
} | ||
}, { | ||
key: "onPostSystemInit", | ||
value: function onPostSystemInit() {// do custom logic | ||
} | ||
}, { | ||
key: "start", | ||
value: function start() { | ||
return cc.game.init({ | ||
debugMode: false ? cc.DebugMode.INFO : cc.DebugMode.ERROR, | ||
settingsPath: this.settingsPath, | ||
overrideSettings: { | ||
// assets: { | ||
// preloadBundles: [{ bundle: 'main', version: 'xxx' }], | ||
// } | ||
profiling: { | ||
showFPS: this.showFPS | ||
} | ||
} | ||
}).then(function () { | ||
return cc.game.run(); | ||
}); | ||
} | ||
}]); | ||
|
||
return Application; | ||
}()); | ||
} | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"importBase":"import","nativeBase":"native","name":"internal","deps":[],"uuids":["0ca60d3e4","1cAq5vRJJJFbj4dJKjseTN","509DSLyINOL48RziM7hZ+h","609xlc7CpF67qUiVX2DoHQ","81Dpbk5FZEaJtZ9OjzlzLA","87HDtsc3lBnb2jeUsjmrkN","8bvbzdXNRBALbVt8liW2EH","97CwWYvLBHFJH7LoFEDczY","a3zQCfCrBCDZJ4uf2rk5u8","b51hFfA3BNfKrTwZTMcc+Y","bc1kzGLdlD9qu+ZjGNMyAy","c2chXYaDVLaL+7verGEAwE","d9MFkNu5JMyIvRI80Cf57f","ddOhRNq39B8IK4LkOgkNSW","e9qpo+WytKx6LHBz3isrJP","ef6OKj6s5Ce7Txy4qTfsd9","f0QW5oAgBLd6kmT50W5JTa","f9KAbXF2hEP6/oErzehNDw","fdoJXLgx1GAa2UhGATlj3o"],"paths":{"1":["db:/internal/effects/internal/builtin-graphics",0],"2":["db:/internal/default_materials/ui-alpha-test-material",1],"3":["db:/internal/effects/for2d/builtin-sprite",0],"4":["db:/internal/effects/internal/builtin-clear-stencil",0],"5":["db:/internal/effects/util/profiler",0],"6":["db:/internal/default_materials/default-clear-stencil",1],"7":["db:/internal/effects/util/splash-screen",0],"8":["db:/internal/effects/builtin-unlit",0],"9":["db:/internal/default_materials/default-spine-material",1],"10":["db:/internal/default_materials/missing-effect-material",1],"11":["db:/internal/effects/for2d/builtin-spine",0],"12":["db:/internal/default_materials/missing-material",1],"13":["db:/internal/default_materials/ui-sprite-gray-alpha-sep-material",1],"14":["db:/internal/default_materials/ui-base-material",1],"15":["db:/internal/default_materials/ui-sprite-gray-material",1],"16":["db:/internal/default_materials/ui-graphics-material",1],"17":["db:/internal/default_materials/ui-sprite-alpha-sep-material",1],"18":["db:/internal/default_materials/ui-sprite-material",1]},"scenes":{},"packs":{"0ca60d3e4":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18"]},"versions":{"import":[],"native":[]},"redirect":[],"debug":false,"extensionMap":{},"hasPreloadScript":true,"dependencyRelationships":{"2":["3"],"6":["4"],"9":["11"],"10":["8"],"12":["8"],"13":["3"],"14":["3"],"15":["3"],"16":["1"],"17":["3"],"18":["3"]},"types":["cc.EffectAsset","cc.Material"]} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
System.register("chunks:///_virtual/internal",[],(function(){return{execute:function(){}}})); | ||
|
||
(function(r) { | ||
r('virtual:///prerequisite-imports/internal', 'chunks:///_virtual/internal'); | ||
})(function(mid, cid) { | ||
System.register(mid, [cid], function (_export, _context) { | ||
return { | ||
setters: [function(_m) { | ||
var _exportObj = {}; | ||
|
||
for (var _key in _m) { | ||
if (_key !== "default" && _key !== "__esModule") _exportObj[_key] = _m[_key]; | ||
} | ||
|
||
_export(_exportObj); | ||
}], | ||
execute: function () { } | ||
}; | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"importBase":"import","nativeBase":"native","name":"main","deps":[],"uuids":["01f8cc82a","08f01a17d","2ahJmN9n5I54QqSVdkQgq7","2bjIcTljJMdZeDxObe6syi","40MaB86HdDNrkPkg60R3qW","43yRSEYRBPR6E+VaVlARUi","9euGJc4D5HmoRI3WHKsqDa","40MaB86HdDNrkPkg60R3qW@6c48a","40MaB86HdDNrkPkg60R3qW@f9941","42SUM2gkhABICSv/xQhJL1","70D3rZtIlHuLreg+OJ3lmM","a5pWRJXOBLF7eZuiGrq7/5","a5pWRJXOBLF7eZuiGrq7/5@6c48a","a5pWRJXOBLF7eZuiGrq7/5@f9941","baIUdvKGZPgZxNbjWTFuRI","c9olSzmPlL2r3KYU5HrKJG","c9olSzmPlL2r3KYU5HrKJG@6c48a","c9olSzmPlL2r3KYU5HrKJG@f9941","d0O3CPnIJKuIQDPz2Wjc/q","d0O3CPnIJKuIQDPz2Wjc/q@6c48a","d0O3CPnIJKuIQDPz2Wjc/q@f9941","dc3RdaBnZMsZFyxNc1vuLQ","deaqaNPNxG9pSeTRyk18Dm","deaqaNPNxG9pSeTRyk18Dm@6c48a","deaqaNPNxG9pSeTRyk18Dm@f9941","e1O2pZC3tECK4wEGoNMExR","e6l24DF4BMCIxCh+t3gPB+","ecqMjYXQFAsL851gfsGKNg","ecqMjYXQFAsL851gfsGKNg@6c48a","ecqMjYXQFAsL851gfsGKNg@f9941","fdjsU2o1RKF5x0TziDw3jI"],"paths":{"5":["db:/assets/Scenes/Game",0],"6":["db:/assets/Scenes/Scene",0],"14":["db:/internal/physics/default-physics-material",2],"30":["db:/internal/default_renderpipeline/builtin-forward",1]},"scenes":{"db://assets/Scenes/Game.scene":5,"db://assets/Scenes/Scene.scene":6},"packs":{"01f8cc82a":["7","12","16","19","23","28"],"08f01a17d":["2","3","8","9","5","10","13","17","20","21","24","26","29"]},"versions":{"import":[],"native":[]},"redirect":[],"debug":false,"extensionMap":{".cconb":["25"]},"hasPreloadScript":true,"dependencyRelationships":{"5":["8","20","25","21","29","10","26","2","3","9"],"6":["8","20","25","21","29","10","26","2","3","9"],"7":["4"],"8":["7"],"10":["13"],"12":["11"],"13":["12"],"16":["15"],"17":["16"],"19":["18"],"20":["19"],"23":["22"],"24":["23"],"25":["20","17","24"],"28":["27"],"29":["28"]},"types":["cc.SceneAsset","cc.RenderPipeline","cc.PhysicsMaterial"]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"type":"cc.Texture2D","data":[["2,2,2,2,0,0",["40MaB86HdDNrkPkg60R3qW"]],["2,2,2,2,0,0",["a5pWRJXOBLF7eZuiGrq7/5"]],["2,2,2,2,0,0",["c9olSzmPlL2r3KYU5HrKJG"]],["2,2,2,2,0,0",["d0O3CPnIJKuIQDPz2Wjc/q"]],["2,2,2,2,0,0",["deaqaNPNxG9pSeTRyk18Dm"]],["2,2,2,2,0,0",["ecqMjYXQFAsL851gfsGKNg"]]]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[1,["ecqMjYXQFAsL851gfsGKNg@f9941","dc3RdaBnZMsZFyxNc1vuLQ","e1O2pZC3tECK4wEGoNMExR","a5pWRJXOBLF7eZuiGrq7/5@f9941","40MaB86HdDNrkPkg60R3qW@6c48a","40MaB86HdDNrkPkg60R3qW@f9941","d0O3CPnIJKuIQDPz2Wjc/q@f9941","e6l24DF4BMCIxCh+t3gPB+","2ahJmN9n5I54QqSVdkQgq7","2bjIcTljJMdZeDxObe6syi","42SUM2gkhABICSv/xQhJL1","70D3rZtIlHuLreg+OJ3lmM","a5pWRJXOBLF7eZuiGrq7/5@6c48a","c9olSzmPlL2r3KYU5HrKJG@6c48a","d0O3CPnIJKuIQDPz2Wjc/q@6c48a","deaqaNPNxG9pSeTRyk18Dm@6c48a","ecqMjYXQFAsL851gfsGKNg@6c48a"],["node","_spriteFrame","_textureSource","_font","_cameraComponent","ground3","ground2","ground1","clip","pipeQueue","bird","result","ground","scene","_parent","audioSource","_defaultClip","prefabPipes","root","bottomPipe","topPipe","data"],[["cc.Node",["_name","_layer","_id","_components","_parent","_children","_prefab","_lpos","_lscale","_lrot","_euler"],0,9,1,2,4,5,5,5,5],"cc.SpriteFrame",["cc.Node",["_name","_layer","_id","_parent","_components","_lpos","_children"],0,1,12,5,2],["cc.UITransform",["node","_contentSize","_anchorPoint","__prefab"],3,1,5,5,4],["cc.Sprite",["_sizeMode","node","_spriteFrame","__prefab"],2,1,6,4],["cc.RigidBody2D",["enabledContactListener","_allowSleep","_type","_gravityScale","_linearDamping","node","__prefab"],-2,1,4],["cc.Node",["_name","_id","_parent","_components","_lpos"],1,1,2,5],["cc.BoxCollider2D",["_sensor","node","_offset","_size","__prefab"],2,1,5,5,4],["cc.Label",["_string","_actualFontSize","_isSystemFontUsed","_fontSize","_lineHeight","node","_color"],-2,1,5],["cc.AudioClip",["_name","_native","_duration"],0],["cc.SceneAsset",["_name"],2],["cc.Canvas",["node","_cameraComponent"],3,1,1],["cc.Widget",["_alignFlags","_top","_bottom","node"],0,1],["d4e78IM2BxCXa7cH14nPYw6",["node","ground1","ground2","ground3"],3,1,1,1,1],["cc.Animation",["node","_clips","_defaultClip"],3,1,3,6],["cc.CircleCollider2D",["_sensor","_radius","node"],1,1],["cc.Scene",["_name","_children","_globals"],2,2,4],["cc.SceneGlobals",["ambient","shadows","_skybox","fog","octree","skin","lightProbeInfo"],3,4,4,4,4,4,4,4],["cc.AmbientInfo",["_skyColorHDR","_groundAlbedoHDR"],3,5,5],["cc.ShadowsInfo",["_shadowColor","_size"],3,5,5],["cc.SkyboxInfo",[],3],["cc.FogInfo",[],3],["cc.OctreeInfo",[],3],["cc.SkinInfo",[],3],["cc.LightProbeInfo",[],3],["9b3d81zoTxJsbmHHRSCorfq",["speed","pipeSpeed","node","ground","result","bird","pipeQueue","clip"],1,1,1,1,1,1,1],["cc.Camera",["_projection","_priority","_orthoHeight","_near","_far","_visibility","node","_color"],-3,1,5],["b06f1lcV4VA4oShrZ6SMlex",["jumpHeight","jumpDuration","node"],1,1],["da04d+s6pRF551SP+Jrfunc",["node","scoreLabel","highScore","resultEnd"],3,1,1,1,1],["b0eb73P2/ZFfZvXzYZhGxUT",["node","pipePoolHome"],3,1,1],["d8eb6EH1t9MtbW3UIrunYjS",["clips"],3,3],["cc.AudioSource",[],3],["cc.Prefab",["_name"],2],["cc.CompPrefabInfo",["fileId"],2],["78c53FlHKtIXqCC734YoQ+3",["node","__prefab","topPipe","bottomPipe"],3,1,4,1,1],["cc.PrefabInfo",["fileId","instance","targetOverrides","nestedPrefabInstanceRoots","root","asset"],-1,1,1],["cc.TTFFont",["_name","_native"],1]],[[33,0,2],[3,0,1,1],[3,0,1],[0,0,1,4,3,7,3],[9,0,1,2,4],[4,0,1,2,2],[2,0,1,3,4,5,3],[3,0,1,2,1],[35,0,1,2,3,4,5,5],[0,0,1,4,3,3],[6,0,1,2,3,3],[3,0,3,1,2,1],[5,0,2,1,5,4],[5,0,2,5,6,3],[7,0,1,2,3,2],[7,1,4,2,3,1],[8,0,1,2,5,6,4],[10,0,2],[0,0,1,2,5,3,7,4],[0,0,1,4,5,3,3],[0,0,1,5,3,6,3],[0,0,1,4,3,6,9,8,10,3],[0,0,1,4,3,6,8,3],[2,0,1,3,6,4,5,3],[2,0,1,3,4,3],[2,0,1,3,6,4,3],[2,0,1,2,3,4,5,4],[6,0,2,3,4,2],[3,0,3,1],[11,0,1,1],[12,0,1,2,3,4],[13,0,1,2,3,1],[4,1,2,1],[4,1,3,2,1],[4,0,1,3,2,2],[14,0,1,2,1],[5,0,1,3,4,5,5],[15,0,1,2,3],[16,0,1,2,2],[17,0,1,2,3,4,5,6,1],[18,0,1,1],[19,0,1,1],[20,1],[21,1],[22,1],[23,1],[24,1],[25,0,1,2,3,4,5,6,7,3],[26,0,1,2,3,4,5,6,7,7],[27,0,1,2,3],[8,0,1,3,4,2,5,6,6],[28,0,1,2,3,1],[29,0,1,1],[30,0,1],[31,1],[32,0,2],[34,0,1,2,3,1],[36,0,1,3]],[[[[4,"point",".wav",1.005714],-1],0,0,[],[],[]],[[[4,"hit",".wav",0.54712],-1],0,0,[],[],[]],[[{"name":"background-day","rect":{"x":0,"y":0,"width":288,"height":512},"offset":{"x":0,"y":0},"originalSize":{"width":288,"height":512},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-144,-256,0,144,-256,0,-144,256,0,144,256,0],"indexes":[0,1,2,2,1,3],"uv":[0,512,288,512,0,0,288,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-144,"y":-256,"z":0},"maxPos":{"x":144,"y":256,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[1],0,[0],[2],[4]],[[[4,"die",".wav",1.104399],-1],0,0,[],[],[]],[[[17,"Game"],[18,"Canvas",33554432,"beI88Z2HpFELqR4T5EMHpg",[-5,-6,-7,-8,-9,-10],[[1,-1,[5,288,512]],[29,-3,-2],[30,45,-5.684341886080802e-14,-5.684341886080802e-14,-4]],[1,144,255.99999999999994,0]],[23,"Ground",33554432,1,[-16,-17,-18,-19,-20],[[-11,[31,-15,-14,-13,-12]],1,4],[1,0,200,0]],[24,"Bird",33554432,1,[[[1,-21,[5,34,24]],[32,-22,1],-23,[35,-24,[2],3],[36,true,false,2.3,2,-25],[37,true,16.7,-26]],4,4,1,4,4,4]],[38,"Game",[-27,-28,-29,1],[39,[40,[2,0,0,0,0.520833125],[2,0,0,0,0]],[41,[4,4283190348],[0,512,512]],[42],[43],[44],[45],[46]]],[25,"Results",33554432,1,[-32,-33],[[[2,-30],-31],4,1]],[26,"GameCtrl",33554432,"91S3fw+XpIhao/PoFaXxTN",4,[[[1,-34,[5,640,960]],[47,150,150,-40,-39,-38,-37,-36,-35],-41],4,4,1],[1,320.00000000000006,480.00000000000006,0]],[19,"Score",33554432,5,[-43,-44],[[2,-42]]],[9,"Ground1",33554432,2,[[7,-45,[5,144,112],[0,1,4.5]],[5,0,-46,4]]],[3,"Ground2",33554432,2,[[7,-47,[5,144,112],[0,1,4.5]],[5,0,-48,5]],[1,144,0,0]],[3,"Ground3",33554432,2,[[7,-49,[5,144,112],[0,1,4.5]],[5,0,-50,6]],[1,288,0,0]],[3,"Ground_Trigger",33554432,2,[[2,-51],[12,true,0,false,-52],[14,true,-53,[0,9.5,601.5],[5,196,88]]],[1,0,-1050.992,0]],[3,"Sky_Trigger",33554432,2,[[2,-54],[12,true,0,false,-55],[14,true,-56,[0,9.5,601.5],[5,187.6,67.8]]],[1,3.641,-87.188,0]],[3,"BG",33554432,1,[[1,-57,[5,288,512]],[5,0,-58,0]],[1,0.189,0.834,0]],[9,"PipePool",33554432,1,[[2,-59]]],[6,"Current_Score",33554432,7,[[[1,-60,[5,27.5,100.8]],-61],4,1],[1,14.66,199.396,0]],[6,"Top_Score",33554432,7,[[[1,-62,[5,186.09375,50.4]],-63],4,1],[1,14.66,129.968,0]],[6,"Try_Again",33554432,5,[[[1,-64,[5,134.921875,50.4]],-65],4,1],[1,14.660000000000025,-62.82800000000003,0]],[2,2],[27,"Camera",1,[-66],[1,0,0,1000]],[48,0,1073741824,256,0,2000,41943040,19,[4,4278190080]],[49,100,0.3,3],[50,"0",80,80,80,false,15,[4,4278190080]],[16,"High Score: 0",40,false,16,[4,4278190080]],[16,"Try Again?",40,false,17,[4,4278190080]],[51,5,22,23,24],[52,6,14],[53,[7,8,9,10]],[10,"AudioCtrl","65g0H6C5JN2pO3i2gASxK2",4,[27]],[54],[10,"Audio","f6EHy2TmpK75NHyBmclCr2",4,[29]]],0,[0,0,1,0,4,20,0,0,1,0,0,1,0,-1,19,0,-2,13,0,-3,3,0,-4,2,0,-5,14,0,-6,5,0,-1,18,0,5,10,0,6,9,0,7,8,0,0,2,0,-1,8,0,-2,9,0,-3,10,0,-4,11,0,-5,12,0,0,3,0,0,3,0,-3,21,0,0,3,0,0,3,0,0,3,0,-1,6,0,-2,28,0,-3,30,0,0,5,0,-2,25,0,-1,7,0,-2,17,0,0,6,0,8,27,0,9,26,0,10,21,0,11,25,0,12,18,0,0,6,0,-3,26,0,0,7,0,-1,15,0,-2,16,0,0,8,0,0,8,0,0,9,0,0,9,0,0,10,0,0,10,0,0,11,0,0,11,0,0,11,0,0,12,0,0,12,0,0,12,0,0,13,0,0,13,0,0,14,0,0,15,0,-2,22,0,0,16,0,-2,23,0,0,17,0,-2,24,0,-1,20,0,13,4,1,14,4,27,15,29,27,0,28,29,0,30,66],[0,0,0,0,0,0,0,0,0,0,0,22,23,24,26],[1,1,-1,16,1,1,1,-1,-2,-3,-4,3,3,3,17],[5,6,2,2,0,0,0,7,8,9,10,1,1,1,11]],[[[55,"Pipe"],[20,"Pipe",33554432,[-6,-7],[[28,-2,[0,"cb+0HyJ4NGL4zoW5nomzB/"]],[56,-5,[0,"5a2FpOpEdLXIcKs0H9NnrT"],-4,-3]],[8,"90Y0fPMa9DH7IYqli4yqSb",null,null,null,-1,0]],[21,"Top_Pipe",33554432,1,[[11,-8,[0,"c387DbQl5IlI7qixtx9Wjr"],[5,52,320],[0,1,1]],[33,-9,[0,"832P/2upBEWbAw4WPugoom"],0],[13,true,0,-10,[0,"0cozeMAHpML5PCUY4aMltr"]],[15,-11,[0,"40Y7MhkM5Dm6F9H2lbHTPZ"],[0,-26,-160],[5,52,320]]],[8,"e3nEY45ClJU6365rzjWUMy",null,null,null,1,0],[3,0,0,1,6.123233995736766e-17],[1,1.075,1.075,0.538],[1,180,180,7.016709298534876e-15]],[22,"Bottom_Pipe",33554432,1,[[11,-12,[0,"9eeb/IjL1OrKu9iar4k1EN"],[5,52,320],[0,0,0]],[34,0,-13,[0,"94Q7Hs82RHkqwvfJUGh2KP"],1],[13,true,0,-14,[0,"67UpcO4NBLLZaO7RzaGmoJ"]],[15,-15,[0,"650UV7UTZAD5eopaoDVxBp"],[0,26,160],[5,52,320]]],[8,"5eAwLlayJId5CiEyPvVwsL",null,null,null,1,0],[1,1.09,1.09,0.545]]],0,[0,18,1,0,0,1,0,19,3,0,20,2,0,0,1,0,-1,2,0,-2,3,0,0,2,0,0,2,0,0,2,0,0,2,0,0,3,0,0,3,0,0,3,0,0,3,0,21,1,15],[0,0],[1,1],[3,3]],[[{"name":"pipe-green","rect":{"x":0,"y":0,"width":52,"height":320},"offset":{"x":0,"y":0},"originalSize":{"width":52,"height":320},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-26,-160,0,26,-160,0,-26,160,0,26,160,0],"indexes":[0,1,2,2,1,3],"uv":[0,320,52,320,0,0,52,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-26,"y":-160,"z":0},"maxPos":{"x":26,"y":160,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[1],0,[0],[2],[12]],[[{"name":"yellowbird-midflap","rect":{"x":0,"y":0,"width":34,"height":24},"offset":{"x":0,"y":0},"originalSize":{"width":34,"height":24},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-17,-12,0,17,-12,0,-17,12,0,17,12,0],"indexes":[0,1,2,2,1,3],"uv":[0,24,34,24,0,0,34,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-17,"y":-12,"z":0},"maxPos":{"x":17,"y":12,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[1],0,[0],[2],[13]],[[{"name":"yellowbird-upflap","rect":{"x":0,"y":0,"width":34,"height":24},"offset":{"x":0,"y":0},"originalSize":{"width":34,"height":24},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-17,-12,0,17,-12,0,-17,12,0,17,12,0],"indexes":[0,1,2,2,1,3],"uv":[0,24,34,24,0,0,34,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-17,"y":-12,"z":0},"maxPos":{"x":17,"y":12,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[1],0,[0],[2],[14]],[[[57,"FlappyBirdRegular-9Pq0","FlappyBirdRegular-9Pq0.ttf"],-1],0,0,[],[],[]],[[{"name":"yellowbird-downflap","rect":{"x":0,"y":0,"width":34,"height":24},"offset":{"x":0,"y":0},"originalSize":{"width":34,"height":24},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-17,-12,0,17,-12,0,-17,12,0,17,12,0],"indexes":[0,1,2,2,1,3],"uv":[0,24,34,24,0,0,34,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-17,"y":-12,"z":0},"maxPos":{"x":17,"y":12,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[1],0,[0],[2],[15]],[[[4,"swoosh",".wav",2.009977],-1],0,0,[],[],[]],[[{"name":"base","rect":{"x":0,"y":0,"width":336,"height":112},"offset":{"x":0,"y":0},"originalSize":{"width":336,"height":112},"rotated":false,"capInsets":[0,0,0,0],"vertices":{"rawPosition":[-168,-56,0,168,-56,0,-168,56,0,168,56,0],"indexes":[0,1,2,2,1,3],"uv":[0,112,336,112,0,0,336,0],"nuv":[0,0,1,0,0,1,1,1],"minPos":{"x":-168,"y":-56,"z":0},"maxPos":{"x":168,"y":56,"z":0}},"packable":true,"pixelsToUnit":100,"pivot":{"x":0.5,"y":0.5},"meshType":0}],[1],0,[0],[2],[16]]]] |
1 change: 1 addition & 0 deletions
1
assets/main/import/40/4031a07c-e877-4336-b90f-920eb4477a96.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]] |
Oops, something went wrong.