十四 手游开发神器 cocos2d-x editor 之串联游戏流程

于今腐草无萤火,终古垂杨有暮鸦。这篇文章主要讲述十四 手游开发神器 cocos2d-x editor 之串联游戏流程相关的知识,希望能为你提供帮助。
【十四 手游开发神器 cocos2d-x editor 之串联游戏流程】一般游戏都包括几个流程,加载界面,开始界面,选关界面,主界面,暂停界面等等;这节我将这些流程都串联起来;


代码下载:http://www.kuaipan.cn/file/id_25348935635745200.htm?source=1


loading界面;

十四 手游开发神器 cocos2d-x editor 之串联游戏流程

文章图片


LoadingLayer.ccbx


[html]view plaincopy
十四 手游开发神器 cocos2d-x editor 之串联游戏流程

文章图片
十四 手游开发神器 cocos2d-x editor 之串联游戏流程

文章图片
  1. < ?xmlversion="1.0"encoding="UTF-8"?>

  2. < Document
  3. jsControlled="true"
  4. jsController=""
  5. resolution="default"
  6. >

  7. < Resolutions>
  8. < ResolutioncenteredOrigin="false"ext="iphone"height="1280"width="720"name="default"scale="1"/>
  9. < ResolutioncenteredOrigin="false"ext="iphone"height="720"width="1280"name="default1"scale="1"/>
  10. < /Resolutions>

  11. < Animations>
  12. < AnimationautoPlay="true"
  13. id="0"
  14. name="Default Timeline"
  15. length="10"
  16. chainedId="0"
  17. offset="0.0"
  18. position="0.0"
  19. resolution="30"
  20. scale="128">
  21. < CallbackChannel>
  22. < /CallbackChannel>
  23. < SoundChannel>
  24. < /SoundChannel>
  25. < /Animation>

  26. < /Animations>

  27. < Layer
  28. positionX="0"positionY="0"
  29. width="100"height="100"sizeType="Percent"
  30. anchorPointX="0.5"anchorPointY="0.5"ignoreAnchorPoint="true"
  31. scaleX="1"scaleY="1"
  32. touchEnabled="true"positionType="LeftBottom"target="Owner">
  33. < LayerColorpositionType="LeftBottom"width="720"height="1280"positionX="0"positionY="0"anchorPointX="0"
  34. anchorPointY="0"color="#ffff40b8"target="Doc"/>
  35. < SpritepositionType="LeftBottom"width="245.0"height="72.0"positionX="381.0"positionY="661.0"anchorPointX="0.5"
  36. anchorPointY="0.5"src="https://www.songbingjia.com/android/Resources/snow_packer.plist/sa_loading_0001.png"
  37. target="Owner"/>
  38. < /Layer>


  39. < /Document>




开始界面;
十四 手游开发神器 cocos2d-x editor 之串联游戏流程

文章图片


StartLayer.ccbx


[html]view plaincopy
十四 手游开发神器 cocos2d-x editor 之串联游戏流程

文章图片
十四 手游开发神器 cocos2d-x editor 之串联游戏流程

文章图片
  1. < ?xmlversion="1.0"encoding="UTF-8"?>

  2. < Document
  3. jsControlled="true"
  4. jsController="StartLayer"
  5. resolution="default"
  6. >

  7. < Resolutions>
  8. < ResolutioncenteredOrigin="false"ext="iphone"height="1280"width="720"name="default"scale="1"/>
  9. < ResolutioncenteredOrigin="false"ext="iphone"height="720"width="1280"name="default1"scale="1"/>
  10. < /Resolutions>

  11. < Animations>
  12. < AnimationautoPlay="true"
  13. id="0"
  14. name="Default Timeline"
  15. length="10"
  16. chainedId="0"
  17. offset="0.0"
  18. position="0.0"
  19. resolution="30"
  20. scale="128">
  21. < CallbackChannel>
  22. < /CallbackChannel>
  23. < SoundChannel>
  24. < /SoundChannel>
  25. < /Animation>

    • 推荐阅读