├── .appveyor.yml ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS ├── CHANGELOG ├── CMakeLists.txt ├── CONTRIBUTING.md ├── README.md ├── cmake ├── Modules │ ├── CocosBuildHelpers.cmake │ ├── CocosBuildSet.cmake │ ├── CocosConfigDefine.cmake │ ├── CocosConfigDepend.cmake │ ├── FindChipmunk.cmake │ ├── FindFMOD.cmake │ ├── FindFontconfig.cmake │ ├── FindGLFW3.cmake │ ├── FindGTK3.cmake │ ├── FindMINIZIP.cmake │ ├── FindMPG123.cmake │ ├── FindOgg.cmake │ ├── FindRecast.cmake │ ├── FindSQLite3.cmake │ ├── FindTinyXML2.cmake │ ├── FindVorbis.cmake │ ├── FindWEBSOCKETS.cmake │ ├── FindWebP.cmake │ ├── Findflatbuffers.cmake │ ├── Findxxhash.cmake │ └── PreventInSourceBuilds.cmake ├── README.md ├── images │ ├── Xcode_Find_Setting_Name.png │ └── Xcode_General_Page.png └── scripts │ └── sync_folder.py ├── cocos ├── 2d │ ├── CCAction.cpp │ ├── CCAction.h │ ├── CCActionCamera.cpp │ ├── CCActionCamera.h │ ├── CCActionCatmullRom.cpp │ ├── CCActionCatmullRom.h │ ├── CCActionEase.cpp │ ├── CCActionEase.h │ ├── CCActionGrid.cpp │ ├── CCActionGrid.h │ ├── CCActionGrid3D.cpp │ ├── CCActionGrid3D.h │ ├── CCActionInstant.cpp │ ├── CCActionInstant.h │ ├── CCActionInterval.cpp │ ├── CCActionInterval.h │ ├── CCActionManager.cpp │ ├── CCActionManager.h │ ├── CCActionPageTurn3D.cpp │ ├── CCActionPageTurn3D.h │ ├── CCActionProgressTimer.cpp │ ├── CCActionProgressTimer.h │ ├── CCActionTiledGrid.cpp │ ├── CCActionTiledGrid.h │ ├── CCActionTween.cpp │ ├── CCActionTween.h │ ├── CCAnimation.cpp │ ├── CCAnimation.h │ ├── CCAnimationCache.cpp │ ├── CCAnimationCache.h │ ├── CCAtlasNode.cpp │ ├── CCAtlasNode.h │ ├── CCAutoPolygon.cpp │ ├── CCAutoPolygon.h │ ├── CCCamera.cpp │ ├── CCCamera.h │ ├── CCCameraBackgroundBrush.cpp │ ├── CCCameraBackgroundBrush.h │ ├── CCClippingNode.cpp │ ├── CCClippingNode.h │ ├── CCClippingRectangleNode.cpp │ ├── CCClippingRectangleNode.h │ ├── CCComponent.cpp │ ├── CCComponent.h │ ├── CCComponentContainer.cpp │ ├── CCComponentContainer.h │ ├── CCDrawNode.cpp │ ├── CCDrawNode.h │ ├── CCFastTMXLayer.cpp │ ├── CCFastTMXLayer.h │ ├── CCFastTMXTiledMap.cpp │ ├── CCFastTMXTiledMap.h │ ├── CCFont.cpp │ ├── CCFont.h │ ├── CCFontAtlas.cpp │ ├── CCFontAtlas.h │ ├── CCFontAtlasCache.cpp │ ├── CCFontAtlasCache.h │ ├── CCFontCharMap.cpp │ ├── CCFontCharMap.h │ ├── CCFontFNT.cpp │ ├── CCFontFNT.h │ ├── CCFontFreeType.cpp │ ├── CCFontFreeType.h │ ├── CCGrid.cpp │ ├── CCGrid.h │ ├── CCLabel.cpp │ ├── CCLabel.h │ ├── CCLabelAtlas.cpp │ ├── CCLabelAtlas.h │ ├── CCLabelTextFormatter.cpp │ ├── CCLabelTextFormatter.h │ ├── CCLayer.cpp │ ├── CCLayer.h │ ├── CCLight.cpp │ ├── CCLight.h │ ├── CCMenu.cpp │ ├── CCMenu.h │ ├── CCMenuItem.cpp │ ├── CCMenuItem.h │ ├── CCMotionStreak.cpp │ ├── CCMotionStreak.h │ ├── CCNode.cpp │ ├── CCNode.h │ ├── CCNodeGrid.cpp │ ├── CCNodeGrid.h │ ├── CCParallaxNode.cpp │ ├── CCParallaxNode.h │ ├── CCParticleBatchNode.cpp │ ├── CCParticleBatchNode.h │ ├── CCParticleExamples.cpp │ ├── CCParticleExamples.h │ ├── CCParticleSystem.cpp │ ├── CCParticleSystem.h │ ├── CCParticleSystemQuad.cpp │ ├── CCParticleSystemQuad.h │ ├── CCProgressTimer.cpp │ ├── CCProgressTimer.h │ ├── CCProtectedNode.cpp │ ├── CCProtectedNode.h │ ├── CCRenderTexture.cpp │ ├── CCRenderTexture.h │ ├── CCScene.cpp │ ├── CCScene.h │ ├── CCSprite.cpp │ ├── CCSprite.h │ ├── CCSpriteBatchNode.cpp │ ├── CCSpriteBatchNode.h │ ├── CCSpriteFrame.cpp │ ├── CCSpriteFrame.h │ ├── CCSpriteFrameCache.cpp │ ├── CCSpriteFrameCache.h │ ├── CCTMXLayer.cpp │ ├── CCTMXLayer.h │ ├── CCTMXObjectGroup.cpp │ ├── CCTMXObjectGroup.h │ ├── CCTMXTiledMap.cpp │ ├── CCTMXTiledMap.h │ ├── CCTMXXMLParser.cpp │ ├── CCTMXXMLParser.h │ ├── CCTextFieldTTF.cpp │ ├── CCTextFieldTTF.h │ ├── CCTileMapAtlas.cpp │ ├── CCTileMapAtlas.h │ ├── CCTransition.cpp │ ├── CCTransition.h │ ├── CCTransitionPageTurn.cpp │ ├── CCTransitionPageTurn.h │ ├── CCTransitionProgress.cpp │ ├── CCTransitionProgress.h │ ├── CCTweenFunction.cpp │ ├── CCTweenFunction.h │ └── CMakeLists.txt ├── 3d │ ├── Android.mk │ ├── CC3DProgramInfo.cpp │ ├── CC3DProgramInfo.h │ ├── CCAABB.cpp │ ├── CCAABB.h │ ├── CCAnimate3D.cpp │ ├── CCAnimate3D.h │ ├── CCAnimation3D.cpp │ ├── CCAnimation3D.h │ ├── CCAnimationCurve.h │ ├── CCAnimationCurve.inl │ ├── CCAttachNode.cpp │ ├── CCAttachNode.h │ ├── CCBillBoard.cpp │ ├── CCBillBoard.h │ ├── CCBundle3D.cpp │ ├── CCBundle3D.h │ ├── CCBundle3DData.cpp │ ├── CCBundle3DData.h │ ├── CCBundleReader.cpp │ ├── CCBundleReader.h │ ├── CCFrustum.cpp │ ├── CCFrustum.h │ ├── CCMesh.cpp │ ├── CCMesh.h │ ├── CCMeshSkin.cpp │ ├── CCMeshSkin.h │ ├── CCMeshVertexIndexData.cpp │ ├── CCMeshVertexIndexData.h │ ├── CCMotionStreak3D.cpp │ ├── CCMotionStreak3D.h │ ├── CCOBB.cpp │ ├── CCOBB.h │ ├── CCObjLoader.cpp │ ├── CCObjLoader.h │ ├── CCPlane.cpp │ ├── CCPlane.h │ ├── CCRay.cpp │ ├── CCRay.h │ ├── CCSkeleton3D.cpp │ ├── CCSkeleton3D.h │ ├── CCSkybox.cpp │ ├── CCSkybox.h │ ├── CCSprite3D.cpp │ ├── CCSprite3D.h │ ├── CCSprite3DMaterial.cpp │ ├── CCSprite3DMaterial.h │ ├── CCTerrain.cpp │ ├── CCTerrain.h │ ├── CCVertexAttribBinding.cpp │ ├── CCVertexAttribBinding.h │ ├── CMakeLists.txt │ └── cocos3d.h ├── CMakeLists.txt ├── audio │ ├── AudioEngine.cpp │ ├── CMakeLists.txt │ ├── android │ │ ├── AssetFd.cpp │ │ ├── AssetFd.h │ │ ├── AudioBufferProvider.h │ │ ├── AudioDecoder.cpp │ │ ├── AudioDecoder.h │ │ ├── AudioDecoderMp3.cpp │ │ ├── AudioDecoderMp3.h │ │ ├── AudioDecoderOgg.cpp │ │ ├── AudioDecoderOgg.h │ │ ├── AudioDecoderProvider.cpp │ │ ├── AudioDecoderProvider.h │ │ ├── AudioDecoderSLES.cpp │ │ ├── AudioDecoderSLES.h │ │ ├── AudioDecoderWav.cpp │ │ ├── AudioDecoderWav.h │ │ ├── AudioEngine-inl.cpp │ │ ├── AudioEngine-inl.h │ │ ├── AudioMixer.cpp │ │ ├── AudioMixer.h │ │ ├── AudioMixerController.cpp │ │ ├── AudioMixerController.h │ │ ├── AudioMixerOps.h │ │ ├── AudioPlayerProvider.cpp │ │ ├── AudioPlayerProvider.h │ │ ├── AudioResampler.cpp │ │ ├── AudioResampler.h │ │ ├── AudioResamplerCubic.cpp │ │ ├── AudioResamplerCubic.h │ │ ├── AudioResamplerPublic.h │ │ ├── CCThreadPool.cpp │ │ ├── CCThreadPool.h │ │ ├── IAudioPlayer.h │ │ ├── ICallerThreadUtils.h │ │ ├── IVolumeProvider.h │ │ ├── OpenSLHelper.h │ │ ├── PcmAudioPlayer.cpp │ │ ├── PcmAudioPlayer.h │ │ ├── PcmAudioService.cpp │ │ ├── PcmAudioService.h │ │ ├── PcmBufferProvider.cpp │ │ ├── PcmBufferProvider.h │ │ ├── PcmData.cpp │ │ ├── PcmData.h │ │ ├── Track.cpp │ │ ├── Track.h │ │ ├── UrlAudioPlayer.cpp │ │ ├── UrlAudioPlayer.h │ │ ├── audio.h │ │ ├── audio_utils │ │ │ ├── format.c │ │ │ ├── include │ │ │ │ └── audio_utils │ │ │ │ │ ├── format.h │ │ │ │ │ ├── minifloat.h │ │ │ │ │ └── primitives.h │ │ │ ├── minifloat.cpp │ │ │ ├── primitives.c │ │ │ └── private │ │ │ │ └── private.h │ │ ├── ccdandroidUtils.cpp │ │ ├── ccdandroidUtils.h │ │ ├── cutils │ │ │ ├── bitops.h │ │ │ └── log.h │ │ ├── mp3reader.cpp │ │ ├── mp3reader.h │ │ ├── tinysndfile.cpp │ │ ├── tinysndfile.h │ │ └── utils │ │ │ ├── Compat.h │ │ │ ├── Errors.h │ │ │ ├── Utils.cpp │ │ │ └── Utils.h │ ├── apple │ │ ├── AudioCache.h │ │ ├── AudioCache.mm │ │ ├── AudioDecoder.h │ │ ├── AudioDecoder.mm │ │ ├── AudioEngine-inl.h │ │ ├── AudioEngine-inl.mm │ │ ├── AudioMacros.h │ │ ├── AudioPlayer.h │ │ └── AudioPlayer.mm │ ├── include │ │ ├── AudioEngine.h │ │ └── Export.h │ ├── linux │ │ ├── AudioEngine-linux.cpp │ │ └── AudioEngine-linux.h │ └── win32 │ │ ├── AudioCache.cpp │ │ ├── AudioCache.h │ │ ├── AudioDecoder.cpp │ │ ├── AudioDecoder.h │ │ ├── AudioDecoderManager.cpp │ │ ├── AudioDecoderManager.h │ │ ├── AudioDecoderMp3.cpp │ │ ├── AudioDecoderMp3.h │ │ ├── AudioDecoderOgg.cpp │ │ ├── AudioDecoderOgg.h │ │ ├── AudioEngine-win32.cpp │ │ ├── AudioEngine-win32.h │ │ ├── AudioMacros.h │ │ ├── AudioPlayer.cpp │ │ ├── AudioPlayer.h │ │ ├── MciPlayer.cpp │ │ └── MciPlayer.h ├── base │ ├── CCAsyncTaskPool.cpp │ ├── CCAsyncTaskPool.h │ ├── CCAutoreleasePool.cpp │ ├── CCAutoreleasePool.h │ ├── CCConfiguration.cpp │ ├── CCConfiguration.h │ ├── CCConsole.cpp │ ├── CCConsole.h │ ├── CCController-android.cpp │ ├── CCController-apple.mm │ ├── CCController-linux-win32.cpp │ ├── CCController.cpp │ ├── CCController.h │ ├── CCData.cpp │ ├── CCData.h │ ├── CCDirector.cpp │ ├── CCDirector.h │ ├── CCEnumClass.h │ ├── CCEvent.cpp │ ├── CCEvent.h │ ├── CCEventAcceleration.cpp │ ├── CCEventAcceleration.h │ ├── CCEventController.cpp │ ├── CCEventController.h │ ├── CCEventCustom.cpp │ ├── CCEventCustom.h │ ├── CCEventDispatcher.cpp │ ├── CCEventDispatcher.h │ ├── CCEventFocus.cpp │ ├── CCEventFocus.h │ ├── CCEventKeyboard.cpp │ ├── CCEventKeyboard.h │ ├── CCEventListener.cpp │ ├── CCEventListener.h │ ├── CCEventListenerAcceleration.cpp │ ├── CCEventListenerAcceleration.h │ ├── CCEventListenerController.cpp │ ├── CCEventListenerController.h │ ├── CCEventListenerCustom.cpp │ ├── CCEventListenerCustom.h │ ├── CCEventListenerFocus.cpp │ ├── CCEventListenerFocus.h │ ├── CCEventListenerKeyboard.cpp │ ├── CCEventListenerKeyboard.h │ ├── CCEventListenerMouse.cpp │ ├── CCEventListenerMouse.h │ ├── CCEventListenerTouch.cpp │ ├── CCEventListenerTouch.h │ ├── CCEventMouse.cpp │ ├── CCEventMouse.h │ ├── CCEventTouch.cpp │ ├── CCEventTouch.h │ ├── CCEventType.h │ ├── CCGameController.h │ ├── CCIMEDelegate.h │ ├── CCIMEDispatcher.cpp │ ├── CCIMEDispatcher.h │ ├── CCMap.h │ ├── CCNS.cpp │ ├── CCNS.h │ ├── CCNinePatchImageParser.cpp │ ├── CCNinePatchImageParser.h │ ├── CCProfiling.cpp │ ├── CCProfiling.h │ ├── CCProperties.cpp │ ├── CCProperties.h │ ├── CCProtocols.h │ ├── CCRef.cpp │ ├── CCRef.h │ ├── CCRefPtr.h │ ├── CCScheduler.cpp │ ├── CCScheduler.h │ ├── CCScriptSupport.cpp │ ├── CCScriptSupport.h │ ├── CCStencilStateManager.cpp │ ├── CCStencilStateManager.h │ ├── CCTouch.cpp │ ├── CCTouch.h │ ├── CCUserDefault-android.cpp │ ├── CCUserDefault-apple.mm │ ├── CCUserDefault.cpp │ ├── CCUserDefault.h │ ├── CCValue.cpp │ ├── CCValue.h │ ├── CCVector.h │ ├── CMakeLists.txt │ ├── ObjectFactory.cpp │ ├── ObjectFactory.h │ ├── TGAlib.cpp │ ├── TGAlib.h │ ├── ZipUtils.cpp │ ├── ZipUtils.h │ ├── atitc.cpp │ ├── atitc.h │ ├── base64.cpp │ ├── base64.h │ ├── ccCArray.cpp │ ├── ccCArray.h │ ├── ccConfig.h │ ├── ccConstants.h │ ├── ccFPSImages.c │ ├── ccFPSImages.h │ ├── ccMacros.h │ ├── ccRandom.cpp │ ├── ccRandom.h │ ├── ccTypes.cpp │ ├── ccTypes.h │ ├── ccUTF8.cpp │ ├── ccUTF8.h │ ├── ccUtils.cpp │ ├── ccUtils.h │ ├── etc1.cpp │ ├── etc1.h │ ├── firePngData.h │ ├── pvr.cpp │ ├── pvr.h │ ├── s3tc.cpp │ ├── s3tc.h │ ├── uthash.h │ └── utlist.h ├── cocos2d.cpp ├── cocos2d.h ├── editor-support │ ├── cocostudio │ │ ├── ActionTimeline │ │ │ ├── CCActionTimeline.cpp │ │ │ ├── CCActionTimeline.h │ │ │ ├── CCActionTimelineCache.cpp │ │ │ ├── CCActionTimelineCache.h │ │ │ ├── CCActionTimelineNode.cpp │ │ │ ├── CCActionTimelineNode.h │ │ │ ├── CCBoneNode.cpp │ │ │ ├── CCBoneNode.h │ │ │ ├── CCFrame.cpp │ │ │ ├── CCFrame.h │ │ │ ├── CCSkeletonNode.cpp │ │ │ ├── CCSkeletonNode.h │ │ │ ├── CCSkinNode.cpp │ │ │ ├── CCSkinNode.h │ │ │ ├── CCTimeLine.cpp │ │ │ ├── CCTimeLine.h │ │ │ ├── CCTimelineMacro.h │ │ │ ├── CSLoader.cpp │ │ │ └── CSLoader.h │ │ ├── CCActionFrame.cpp │ │ ├── CCActionFrame.h │ │ ├── CCActionFrameEasing.cpp │ │ ├── CCActionFrameEasing.h │ │ ├── CCActionManagerEx.cpp │ │ ├── CCActionManagerEx.h │ │ ├── CCActionNode.cpp │ │ ├── CCActionNode.h │ │ ├── CCActionObject.cpp │ │ ├── CCActionObject.h │ │ ├── CCArmature.cpp │ │ ├── CCArmature.h │ │ ├── CCArmatureAnimation.cpp │ │ ├── CCArmatureAnimation.h │ │ ├── CCArmatureDataManager.cpp │ │ ├── CCArmatureDataManager.h │ │ ├── CCArmatureDefine.cpp │ │ ├── CCArmatureDefine.h │ │ ├── CCBatchNode.cpp │ │ ├── CCBatchNode.h │ │ ├── CCBone.cpp │ │ ├── CCBone.h │ │ ├── CCColliderDetector.cpp │ │ ├── CCColliderDetector.h │ │ ├── CCComAttribute.cpp │ │ ├── CCComAttribute.h │ │ ├── CCComAudio.cpp │ │ ├── CCComAudio.h │ │ ├── CCComBase.h │ │ ├── CCComController.cpp │ │ ├── CCComController.h │ │ ├── CCComExtensionData.cpp │ │ ├── CCComExtensionData.h │ │ ├── CCComRender.cpp │ │ ├── CCComRender.h │ │ ├── CCDataReaderHelper.cpp │ │ ├── CCDataReaderHelper.h │ │ ├── CCDatas.cpp │ │ ├── CCDatas.h │ │ ├── CCDecorativeDisplay.cpp │ │ ├── CCDecorativeDisplay.h │ │ ├── CCDisplayFactory.cpp │ │ ├── CCDisplayFactory.h │ │ ├── CCDisplayManager.cpp │ │ ├── CCDisplayManager.h │ │ ├── CCInputDelegate.cpp │ │ ├── CCInputDelegate.h │ │ ├── CCProcessBase.cpp │ │ ├── CCProcessBase.h │ │ ├── CCSGUIReader.cpp │ │ ├── CCSGUIReader.h │ │ ├── CCSSceneReader.cpp │ │ ├── CCSSceneReader.h │ │ ├── CCSkin.cpp │ │ ├── CCSkin.h │ │ ├── CCSpriteFrameCacheHelper.cpp │ │ ├── CCSpriteFrameCacheHelper.h │ │ ├── CCTransformHelp.cpp │ │ ├── CCTransformHelp.h │ │ ├── CCTween.cpp │ │ ├── CCTween.h │ │ ├── CCUtilMath.cpp │ │ ├── CCUtilMath.h │ │ ├── CMakeLists.txt │ │ ├── CSLanguageDataBinary_generated.h │ │ ├── CSParse3DBinary_generated.h │ │ ├── CSParseBinary_generated.h │ │ ├── CocoLoader.cpp │ │ ├── CocoLoader.h │ │ ├── CocoStudio.cpp │ │ ├── CocoStudio.h │ │ ├── CocosStudioExport.h │ │ ├── CocosStudioExtension.cpp │ │ ├── CocosStudioExtension.h │ │ ├── DictionaryHelper.cpp │ │ ├── DictionaryHelper.h │ │ ├── FlatBuffersSerialize.cpp │ │ ├── FlatBuffersSerialize.h │ │ ├── LocalizationManager.cpp │ │ ├── LocalizationManager.h │ │ ├── SimpleAudioEngine.cpp │ │ ├── SimpleAudioEngine.h │ │ ├── TriggerBase.cpp │ │ ├── TriggerBase.h │ │ ├── TriggerMng.cpp │ │ ├── TriggerMng.h │ │ ├── TriggerObj.cpp │ │ ├── TriggerObj.h │ │ ├── WidgetCallBackHandlerProtocol.cpp │ │ ├── WidgetCallBackHandlerProtocol.h │ │ ├── WidgetReader │ │ │ ├── ArmatureNodeReader │ │ │ │ ├── ArmatureNodeReader.cpp │ │ │ │ ├── ArmatureNodeReader.h │ │ │ │ └── CSArmatureNode_generated.h │ │ │ ├── ButtonReader │ │ │ │ ├── ButtonReader.cpp │ │ │ │ └── ButtonReader.h │ │ │ ├── CheckBoxReader │ │ │ │ ├── CheckBoxReader.cpp │ │ │ │ └── CheckBoxReader.h │ │ │ ├── ComAudioReader │ │ │ │ ├── ComAudioReader.cpp │ │ │ │ └── ComAudioReader.h │ │ │ ├── GameMapReader │ │ │ │ ├── GameMapReader.cpp │ │ │ │ └── GameMapReader.h │ │ │ ├── GameNode3DReader │ │ │ │ ├── GameNode3DReader.cpp │ │ │ │ └── GameNode3DReader.h │ │ │ ├── ImageViewReader │ │ │ │ ├── ImageViewReader.cpp │ │ │ │ └── ImageViewReader.h │ │ │ ├── LayoutReader │ │ │ │ ├── LayoutReader.cpp │ │ │ │ └── LayoutReader.h │ │ │ ├── Light3DReader │ │ │ │ ├── Light3DReader.cpp │ │ │ │ └── Light3DReader.h │ │ │ ├── ListViewReader │ │ │ │ ├── ListViewReader.cpp │ │ │ │ └── ListViewReader.h │ │ │ ├── LoadingBarReader │ │ │ │ ├── LoadingBarReader.cpp │ │ │ │ └── LoadingBarReader.h │ │ │ ├── Node3DReader │ │ │ │ ├── Node3DReader.cpp │ │ │ │ └── Node3DReader.h │ │ │ ├── NodeReader │ │ │ │ ├── NodeReader.cpp │ │ │ │ └── NodeReader.h │ │ │ ├── NodeReaderDefine.cpp │ │ │ ├── NodeReaderDefine.h │ │ │ ├── NodeReaderProtocol.cpp │ │ │ ├── NodeReaderProtocol.h │ │ │ ├── PageViewReader │ │ │ │ ├── PageViewReader.cpp │ │ │ │ └── PageViewReader.h │ │ │ ├── Particle3DReader │ │ │ │ ├── Particle3DReader.cpp │ │ │ │ └── Particle3DReader.h │ │ │ ├── ParticleReader │ │ │ │ ├── ParticleReader.cpp │ │ │ │ └── ParticleReader.h │ │ │ ├── ProjectNodeReader │ │ │ │ ├── ProjectNodeReader.cpp │ │ │ │ └── ProjectNodeReader.h │ │ │ ├── ScrollViewReader │ │ │ │ ├── ScrollViewReader.cpp │ │ │ │ └── ScrollViewReader.h │ │ │ ├── SingleNodeReader │ │ │ │ ├── SingleNodeReader.cpp │ │ │ │ └── SingleNodeReader.h │ │ │ ├── SkeletonReader │ │ │ │ ├── BoneNodeReader.cpp │ │ │ │ ├── BoneNodeReader.h │ │ │ │ ├── CSBoneBinary_generated.h │ │ │ │ ├── SkeletonNodeReader.cpp │ │ │ │ └── SkeletonNodeReader.h │ │ │ ├── SliderReader │ │ │ │ ├── SliderReader.cpp │ │ │ │ └── SliderReader.h │ │ │ ├── Sprite3DReader │ │ │ │ ├── Sprite3DReader.cpp │ │ │ │ └── Sprite3DReader.h │ │ │ ├── SpriteReader │ │ │ │ ├── SpriteReader.cpp │ │ │ │ └── SpriteReader.h │ │ │ ├── TabControlReader │ │ │ │ ├── CSTabControl_generated.h │ │ │ │ ├── TabControlReader.cpp │ │ │ │ └── TabControlReader.h │ │ │ ├── TextAtlasReader │ │ │ │ ├── TextAtlasReader.cpp │ │ │ │ └── TextAtlasReader.h │ │ │ ├── TextBMFontReader │ │ │ │ ├── TextBMFontReader.cpp │ │ │ │ └── TextBMFontReader.h │ │ │ ├── TextFieldReader │ │ │ │ ├── TextFieldReader.cpp │ │ │ │ └── TextFieldReader.h │ │ │ ├── TextReader │ │ │ │ ├── TextReader.cpp │ │ │ │ └── TextReader.h │ │ │ ├── UserCameraReader │ │ │ │ ├── UserCameraReader.cpp │ │ │ │ └── UserCameraReader.h │ │ │ ├── WidgetReader.cpp │ │ │ ├── WidgetReader.h │ │ │ └── WidgetReaderProtocol.h │ │ └── fbs-files │ │ │ ├── CSArmatureNode.fbs │ │ │ ├── CSBoneBinary.fbs │ │ │ ├── CSLanguageDataBinary.fbs │ │ │ ├── CSParse3DBinary.fbs │ │ │ ├── CSParseBinary.fbs │ │ │ └── CSTabControl.fbs │ └── spine │ │ ├── Animation.cpp │ │ ├── Animation.h │ │ ├── AnimationState.cpp │ │ ├── AnimationState.h │ │ ├── AnimationStateData.cpp │ │ ├── AnimationStateData.h │ │ ├── Atlas.cpp │ │ ├── Atlas.h │ │ ├── AtlasAttachmentLoader.cpp │ │ ├── AtlasAttachmentLoader.h │ │ ├── Attachment.cpp │ │ ├── Attachment.h │ │ ├── AttachmentLoader.cpp │ │ ├── AttachmentLoader.h │ │ ├── AttachmentTimeline.cpp │ │ ├── AttachmentTimeline.h │ │ ├── AttachmentType.h │ │ ├── AttachmentVertices.cpp │ │ ├── AttachmentVertices.h │ │ ├── BlendMode.h │ │ ├── Bone.cpp │ │ ├── Bone.h │ │ ├── BoneData.cpp │ │ ├── BoneData.h │ │ ├── BoundingBoxAttachment.cpp │ │ ├── BoundingBoxAttachment.h │ │ ├── CMakeLists.txt │ │ ├── ClippingAttachment.cpp │ │ ├── ClippingAttachment.h │ │ ├── Color.h │ │ ├── ColorTimeline.cpp │ │ ├── ColorTimeline.h │ │ ├── ConstraintData.cpp │ │ ├── ConstraintData.h │ │ ├── ContainerUtil.h │ │ ├── CurveTimeline.cpp │ │ ├── CurveTimeline.h │ │ ├── Debug.h │ │ ├── DeformTimeline.cpp │ │ ├── DeformTimeline.h │ │ ├── DrawOrderTimeline.cpp │ │ ├── DrawOrderTimeline.h │ │ ├── Event.cpp │ │ ├── Event.h │ │ ├── EventData.cpp │ │ ├── EventData.h │ │ ├── EventTimeline.cpp │ │ ├── EventTimeline.h │ │ ├── Extension.cpp │ │ ├── Extension.h │ │ ├── HasRendererObject.h │ │ ├── HashMap.h │ │ ├── IkConstraint.cpp │ │ ├── IkConstraint.h │ │ ├── IkConstraintData.cpp │ │ ├── IkConstraintData.h │ │ ├── IkConstraintTimeline.cpp │ │ ├── IkConstraintTimeline.h │ │ ├── Json.cpp │ │ ├── Json.h │ │ ├── LinkedMesh.cpp │ │ ├── LinkedMesh.h │ │ ├── MathUtil.cpp │ │ ├── MathUtil.h │ │ ├── MeshAttachment.cpp │ │ ├── MeshAttachment.h │ │ ├── MixBlend.h │ │ ├── MixDirection.h │ │ ├── PathAttachment.cpp │ │ ├── PathAttachment.h │ │ ├── PathConstraint.cpp │ │ ├── PathConstraint.h │ │ ├── PathConstraintData.cpp │ │ ├── PathConstraintData.h │ │ ├── PathConstraintMixTimeline.cpp │ │ ├── PathConstraintMixTimeline.h │ │ ├── PathConstraintPositionTimeline.cpp │ │ ├── PathConstraintPositionTimeline.h │ │ ├── PathConstraintSpacingTimeline.cpp │ │ ├── PathConstraintSpacingTimeline.h │ │ ├── PointAttachment.cpp │ │ ├── PointAttachment.h │ │ ├── Pool.h │ │ ├── PositionMode.h │ │ ├── RTTI.cpp │ │ ├── RTTI.h │ │ ├── RegionAttachment.cpp │ │ ├── RegionAttachment.h │ │ ├── RotateMode.h │ │ ├── RotateTimeline.cpp │ │ ├── RotateTimeline.h │ │ ├── ScaleTimeline.cpp │ │ ├── ScaleTimeline.h │ │ ├── ShearTimeline.cpp │ │ ├── ShearTimeline.h │ │ ├── Skeleton.cpp │ │ ├── Skeleton.h │ │ ├── SkeletonAnimation.cpp │ │ ├── SkeletonAnimation.h │ │ ├── SkeletonBinary.cpp │ │ ├── SkeletonBinary.h │ │ ├── SkeletonBounds.cpp │ │ ├── SkeletonBounds.h │ │ ├── SkeletonClipping.cpp │ │ ├── SkeletonClipping.h │ │ ├── SkeletonData.cpp │ │ ├── SkeletonData.h │ │ ├── SkeletonJson.cpp │ │ ├── SkeletonJson.h │ │ ├── SkeletonRenderer.cpp │ │ ├── SkeletonRenderer.h │ │ ├── Skin.cpp │ │ ├── Skin.h │ │ ├── Slot.cpp │ │ ├── Slot.h │ │ ├── SlotData.cpp │ │ ├── SlotData.h │ │ ├── SpacingMode.h │ │ ├── SpineObject.cpp │ │ ├── SpineObject.h │ │ ├── SpineString.h │ │ ├── TextureLoader.cpp │ │ ├── TextureLoader.h │ │ ├── Timeline.cpp │ │ ├── Timeline.h │ │ ├── TimelineType.h │ │ ├── TransformConstraint.cpp │ │ ├── TransformConstraint.h │ │ ├── TransformConstraintData.cpp │ │ ├── TransformConstraintData.h │ │ ├── TransformConstraintTimeline.cpp │ │ ├── TransformConstraintTimeline.h │ │ ├── TransformMode.h │ │ ├── TranslateTimeline.cpp │ │ ├── TranslateTimeline.h │ │ ├── Triangulator.cpp │ │ ├── Triangulator.h │ │ ├── TwoColorTimeline.cpp │ │ ├── TwoColorTimeline.h │ │ ├── Updatable.cpp │ │ ├── Updatable.h │ │ ├── Vector.h │ │ ├── VertexAttachment.cpp │ │ ├── VertexAttachment.h │ │ ├── VertexEffect.cpp │ │ ├── VertexEffect.h │ │ ├── Vertices.h │ │ ├── dll.h │ │ ├── spine-cocos2dx.cpp │ │ ├── spine-cocos2dx.h │ │ ├── spine.h │ │ ├── v3 │ │ ├── SkeletonBatch.cpp │ │ ├── SkeletonBatch.h │ │ ├── SkeletonTwoColorBatch.cpp │ │ └── SkeletonTwoColorBatch.h │ │ └── v4 │ │ ├── SkeletonBatch.cpp │ │ ├── SkeletonBatch.h │ │ ├── SkeletonTwoColorBatch.cpp │ │ └── SkeletonTwoColorBatch.h ├── math │ ├── CCAffineTransform.cpp │ ├── CCAffineTransform.h │ ├── CCGeometry.cpp │ ├── CCGeometry.h │ ├── CCMath.h │ ├── CCMathBase.h │ ├── CCVertex.cpp │ ├── CCVertex.h │ ├── CMakeLists.txt │ ├── Mat4.cpp │ ├── Mat4.h │ ├── Mat4.inl │ ├── MathUtil.cpp │ ├── MathUtil.h │ ├── MathUtil.inl │ ├── MathUtilNeon.inl │ ├── MathUtilNeon64.inl │ ├── MathUtilSSE.inl │ ├── Quaternion.cpp │ ├── Quaternion.h │ ├── Quaternion.inl │ ├── TransformUtils.cpp │ ├── TransformUtils.h │ ├── Vec2.cpp │ ├── Vec2.h │ ├── Vec2.inl │ ├── Vec3.cpp │ ├── Vec3.h │ ├── Vec3.inl │ ├── Vec4.cpp │ ├── Vec4.h │ └── Vec4.inl ├── navmesh │ ├── CCNavMesh.cpp │ ├── CCNavMesh.h │ ├── CCNavMeshAgent.cpp │ ├── CCNavMeshAgent.h │ ├── CCNavMeshDebugDraw.cpp │ ├── CCNavMeshDebugDraw.h │ ├── CCNavMeshObstacle.cpp │ ├── CCNavMeshObstacle.h │ ├── CCNavMeshUtils.cpp │ ├── CCNavMeshUtils.h │ └── CMakeLists.txt ├── network │ ├── CCDownloader-android.cpp │ ├── CCDownloader-android.h │ ├── CCDownloader-apple.h │ ├── CCDownloader-apple.mm │ ├── CCDownloader-curl.cpp │ ├── CCDownloader-curl.h │ ├── CCDownloader.cpp │ ├── CCDownloader.h │ ├── CCIDownloaderImpl.h │ ├── CMakeLists.txt │ ├── HttpAsynConnection-apple.h │ ├── HttpAsynConnection-apple.m │ ├── HttpClient-android.cpp │ ├── HttpClient-apple.mm │ ├── HttpClient.cpp │ ├── HttpClient.h │ ├── HttpCookie.cpp │ ├── HttpCookie.h │ ├── HttpRequest.h │ ├── HttpResponse.h │ ├── SocketIO.cpp │ ├── SocketIO.h │ ├── Uri.cpp │ ├── Uri.h │ ├── WebSocket.cpp │ └── WebSocket.h ├── physics │ ├── CCPhysicsBody.cpp │ ├── CCPhysicsBody.h │ ├── CCPhysicsContact.cpp │ ├── CCPhysicsContact.h │ ├── CCPhysicsHelper.h │ ├── CCPhysicsJoint.cpp │ ├── CCPhysicsJoint.h │ ├── CCPhysicsShape.cpp │ ├── CCPhysicsShape.h │ ├── CCPhysicsWorld.cpp │ ├── CCPhysicsWorld.h │ ├── CMakeLists.txt │ └── cpCompat62.h ├── physics3d │ ├── CCPhysics3D.cpp │ ├── CCPhysics3D.h │ ├── CCPhysics3DComponent.cpp │ ├── CCPhysics3DComponent.h │ ├── CCPhysics3DConstraint.cpp │ ├── CCPhysics3DConstraint.h │ ├── CCPhysics3DDebugDrawer.cpp │ ├── CCPhysics3DDebugDrawer.h │ ├── CCPhysics3DObject.cpp │ ├── CCPhysics3DObject.h │ ├── CCPhysics3DShape.cpp │ ├── CCPhysics3DShape.h │ ├── CCPhysics3DWorld.cpp │ ├── CCPhysics3DWorld.h │ ├── CCPhysicsSprite3D.cpp │ ├── CCPhysicsSprite3D.h │ └── CMakeLists.txt ├── platform │ ├── CCApplication.h │ ├── CCApplicationProtocol.h │ ├── CCCommon.h │ ├── CCDevice.h │ ├── CCFileUtils.cpp │ ├── CCFileUtils.h │ ├── CCGL.h │ ├── CCGLView.cpp │ ├── CCGLView.h │ ├── CCImage.cpp │ ├── CCImage.h │ ├── CCPlatformConfig.h │ ├── CCPlatformDefine.h │ ├── CCPlatformMacros.h │ ├── CCSAXParser.cpp │ ├── CCSAXParser.h │ ├── CCStdC.h │ ├── CMakeLists.txt │ ├── android │ │ ├── CCApplication-android.cpp │ │ ├── CCApplication-android.h │ │ ├── CCCommon-android.cpp │ │ ├── CCDevice-android.cpp │ │ ├── CCEnhanceAPI-android.cpp │ │ ├── CCEnhanceAPI-android.h │ │ ├── CCFileUtils-android.cpp │ │ ├── CCFileUtils-android.h │ │ ├── CCGL-android.h │ │ ├── CCGLViewImpl-android.cpp │ │ ├── CCGLViewImpl-android.h │ │ ├── CCPlatformDefine-android.h │ │ ├── CCStdC-android.h │ │ ├── CMakeLists.txt │ │ ├── ControllerManualAdapter │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── AndroidManifest.xml │ │ │ ├── ant.properties │ │ │ ├── build.xml │ │ │ ├── libs │ │ │ │ ├── com.bda.controller.jar │ │ │ │ ├── nibiru_lib.jar │ │ │ │ └── ouya-sdk.jar │ │ │ ├── lint.xml │ │ │ ├── proguard-project.txt │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ └── .gitignore │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── lib │ │ │ │ ├── GameControllerActivity.java │ │ │ │ ├── GameControllerHelper.java │ │ │ │ ├── GameControllerMoga.java │ │ │ │ ├── GameControllerNibiru.java │ │ │ │ ├── GameControllerOuya.java │ │ │ │ └── inputmanagercompat │ │ │ │ ├── InputManagerCompat.java │ │ │ │ ├── InputManagerV16.java │ │ │ │ └── InputManagerV9.java │ │ ├── java │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── AndroidManifest.xml │ │ │ ├── ant.properties │ │ │ ├── build.xml │ │ │ ├── libs │ │ │ │ ├── android-async-http-1.4.9.jar │ │ │ │ ├── com.android.vending.expansion.zipfile.jar │ │ │ │ └── httpclient-4.4.1.1.jar │ │ │ ├── lint.xml │ │ │ ├── proguard-project.txt │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ └── .gitignore │ │ │ └── src │ │ │ │ ├── com │ │ │ │ └── enhance │ │ │ │ │ └── gameservice │ │ │ │ │ └── IGameTuningService.aidl │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── lib │ │ │ │ ├── Cocos2dxAccelerometer.java │ │ │ │ ├── Cocos2dxActivity.java │ │ │ │ ├── Cocos2dxAudioFocusManager.java │ │ │ │ ├── Cocos2dxBitmap.java │ │ │ │ ├── Cocos2dxDownloader.java │ │ │ │ ├── Cocos2dxEditBox.java │ │ │ │ ├── Cocos2dxEditBoxHelper.java │ │ │ │ ├── Cocos2dxGLSurfaceView.java │ │ │ │ ├── Cocos2dxHandler.java │ │ │ │ ├── Cocos2dxHelper.java │ │ │ │ ├── Cocos2dxHttpURLConnection.java │ │ │ │ ├── Cocos2dxJavascriptJavaBridge.java │ │ │ │ ├── Cocos2dxLocalStorage.java │ │ │ │ ├── Cocos2dxLuaJavaBridge.java │ │ │ │ ├── Cocos2dxReflectionHelper.java │ │ │ │ ├── Cocos2dxRenderer.java │ │ │ │ ├── Cocos2dxTextInputWrapper.java │ │ │ │ ├── Cocos2dxTypefaces.java │ │ │ │ ├── Cocos2dxVideoHelper.java │ │ │ │ ├── Cocos2dxVideoView.java │ │ │ │ ├── Cocos2dxWebView.java │ │ │ │ ├── Cocos2dxWebViewHelper.java │ │ │ │ ├── GameControllerAdapter.java │ │ │ │ ├── GameControllerDelegate.java │ │ │ │ ├── GameControllerUtils.java │ │ │ │ └── ResizeLayout.java │ │ ├── javaactivity-android.cpp │ │ ├── jni │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxAccelerometer.cpp │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxBitmap.cpp │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxBitmap.h │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxHelper.cpp │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxHelper.h │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxRenderer.cpp │ │ │ ├── JniHelper.cpp │ │ │ ├── JniHelper.h │ │ │ └── TouchesJni.cpp │ │ ├── libcocos2dx-with-controller │ │ │ ├── .gitignore │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ └── proguard-rules.pro │ │ └── libcocos2dx │ │ │ ├── .gitignore │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ └── proguard-rules.pro │ ├── apple │ │ ├── CCDevice-apple.h │ │ ├── CCDevice-apple.mm │ │ ├── CCFileUtils-apple.h │ │ └── CCFileUtils-apple.mm │ ├── desktop │ │ ├── CCGLViewImpl-desktop.cpp │ │ └── CCGLViewImpl-desktop.h │ ├── ios │ │ ├── CCApplication-ios.h │ │ ├── CCApplication-ios.mm │ │ ├── CCCommon-ios.mm │ │ ├── CCDevice-ios.mm │ │ ├── CCDirectorCaller-ios.h │ │ ├── CCDirectorCaller-ios.mm │ │ ├── CCEAGLView-ios.h │ │ ├── CCEAGLView-ios.mm │ │ ├── CCGLViewImpl-ios.h │ │ ├── CCGLViewImpl-ios.mm │ │ ├── CCImage-ios.mm │ │ ├── CCInputView-ios.h │ │ ├── CCInputView-ios.mm │ │ ├── CCPlatformDefine-ios.h │ │ ├── CCStdC-ios.h │ │ └── cocos2d-prefix.pch │ ├── linux │ │ ├── CCApplication-linux.cpp │ │ ├── CCApplication-linux.h │ │ ├── CCCommon-linux.cpp │ │ ├── CCDevice-linux.cpp │ │ ├── CCFileUtils-linux.cpp │ │ ├── CCFileUtils-linux.h │ │ ├── CCGL-linux.h │ │ ├── CCPlatformDefine-linux.h │ │ └── CCStdC-linux.h │ ├── mac │ │ ├── CCApplication-mac.h │ │ ├── CCApplication-mac.mm │ │ ├── CCCommon-mac.mm │ │ ├── CCDevice-mac.mm │ │ ├── CCGLViewImpl-mac.h │ │ ├── CCGLViewImpl-mac.mm │ │ ├── CCPlatformDefine-mac.h │ │ ├── CCStdC-mac.h │ │ └── cocos2d-prefix.pch │ └── win32 │ │ ├── CCApplication-win32.cpp │ │ ├── CCApplication-win32.h │ │ ├── CCCommon-win32.cpp │ │ ├── CCDevice-win32.cpp │ │ ├── CCFileUtils-win32.cpp │ │ ├── CCFileUtils-win32.h │ │ ├── CCGL-win32.h │ │ ├── CCPlatformDefine-win32.h │ │ ├── CCStdC-win32.cpp │ │ ├── CCStdC-win32.h │ │ ├── CCUtils-win32.cpp │ │ ├── CCUtils-win32.h │ │ ├── compat │ │ └── stdint.h │ │ ├── inet_pton_mingw.cpp │ │ └── inet_pton_mingw.h ├── precheader.cpp ├── precheader.h ├── renderer │ ├── CCCallbackCommand.cpp │ ├── CCCallbackCommand.h │ ├── CCCustomCommand.cpp │ ├── CCCustomCommand.h │ ├── CCGroupCommand.cpp │ ├── CCGroupCommand.h │ ├── CCMaterial.cpp │ ├── CCMaterial.h │ ├── CCMeshCommand.cpp │ ├── CCMeshCommand.h │ ├── CCPass.cpp │ ├── CCPass.h │ ├── CCPipelineDescriptor.h │ ├── CCQuadCommand.cpp │ ├── CCQuadCommand.h │ ├── CCRenderCommand.cpp │ ├── CCRenderCommand.h │ ├── CCRenderCommandPool.h │ ├── CCRenderState.cpp │ ├── CCRenderState.h │ ├── CCRenderer.cpp │ ├── CCRenderer.h │ ├── CCTechnique.cpp │ ├── CCTechnique.h │ ├── CCTexture2D.cpp │ ├── CCTexture2D.h │ ├── CCTextureAtlas.cpp │ ├── CCTextureAtlas.h │ ├── CCTextureCache.cpp │ ├── CCTextureCache.h │ ├── CCTextureCube.cpp │ ├── CCTextureCube.h │ ├── CCTextureUtils.cpp │ ├── CCTextureUtils.h │ ├── CCTrianglesCommand.cpp │ ├── CCTrianglesCommand.h │ ├── CMakeLists.txt │ ├── backend │ │ ├── Backend.h │ │ ├── Buffer.h │ │ ├── CommandBuffer.cpp │ │ ├── CommandBuffer.h │ │ ├── DepthStencilState.cpp │ │ ├── DepthStencilState.h │ │ ├── Device.cpp │ │ ├── Device.h │ │ ├── DeviceInfo.h │ │ ├── Macros.h │ │ ├── Program.cpp │ │ ├── Program.h │ │ ├── ProgramCache.cpp │ │ ├── ProgramCache.h │ │ ├── ProgramState.cpp │ │ ├── ProgramState.h │ │ ├── RenderPassDescriptor.cpp │ │ ├── RenderPassDescriptor.h │ │ ├── RenderPipeline.h │ │ ├── RenderPipelineDescriptor.h │ │ ├── ShaderCache.cpp │ │ ├── ShaderCache.h │ │ ├── ShaderModule.cpp │ │ ├── ShaderModule.h │ │ ├── Texture.cpp │ │ ├── Texture.h │ │ ├── Types.cpp │ │ ├── Types.h │ │ ├── VertexLayout.cpp │ │ ├── VertexLayout.h │ │ ├── metal │ │ │ ├── BufferMTL.h │ │ │ ├── BufferMTL.mm │ │ │ ├── BufferManager.h │ │ │ ├── BufferManager.mm │ │ │ ├── CommandBufferMTL.h │ │ │ ├── CommandBufferMTL.mm │ │ │ ├── DepthStencilStateMTL.h │ │ │ ├── DepthStencilStateMTL.mm │ │ │ ├── DeviceInfoMTL.h │ │ │ ├── DeviceInfoMTL.mm │ │ │ ├── DeviceMTL.h │ │ │ ├── DeviceMTL.mm │ │ │ ├── ProgramMTL.h │ │ │ ├── ProgramMTL.mm │ │ │ ├── RenderPipelineMTL.h │ │ │ ├── RenderPipelineMTL.mm │ │ │ ├── ShaderModuleMTL.h │ │ │ ├── ShaderModuleMTL.mm │ │ │ ├── TextureMTL.h │ │ │ ├── TextureMTL.mm │ │ │ ├── Utils.h │ │ │ └── Utils.mm │ │ └── opengl │ │ │ ├── BufferGL.cpp │ │ │ ├── BufferGL.h │ │ │ ├── CommandBufferGL.cpp │ │ │ ├── CommandBufferGL.h │ │ │ ├── DepthStencilStateGL.cpp │ │ │ ├── DepthStencilStateGL.h │ │ │ ├── DeviceGL.cpp │ │ │ ├── DeviceGL.h │ │ │ ├── DeviceInfoGL.cpp │ │ │ ├── DeviceInfoGL.h │ │ │ ├── ProgramGL.cpp │ │ │ ├── ProgramGL.h │ │ │ ├── RenderPipelineGL.cpp │ │ │ ├── RenderPipelineGL.h │ │ │ ├── ShaderModuleGL.cpp │ │ │ ├── ShaderModuleGL.h │ │ │ ├── TextureGL.cpp │ │ │ ├── TextureGL.h │ │ │ ├── UtilsGL.cpp │ │ │ └── UtilsGL.h │ ├── ccShaders.cpp │ ├── ccShaders.h │ └── shaders │ │ ├── 3D_color.frag │ │ ├── 3D_colorNormal.frag │ │ ├── 3D_colorNormalTexture.frag │ │ ├── 3D_colorTexture.frag │ │ ├── 3D_particle.frag │ │ ├── 3D_particle.vert │ │ ├── 3D_positionNormalTexture.vert │ │ ├── 3D_positionTexture.vert │ │ ├── 3D_skybox.frag │ │ ├── 3D_skybox.vert │ │ ├── 3D_terrain.frag │ │ ├── 3D_terrain.vert │ │ ├── cameraClear.frag │ │ ├── cameraClear.vert │ │ ├── etc1.frag │ │ ├── etc1_Gray.frag │ │ ├── label_distanceFieldGlow.frag │ │ ├── label_distanceNormal.frag │ │ ├── label_normal.frag │ │ ├── label_outline.frag │ │ ├── layer_radialGradient.frag │ │ ├── lineColor.frag │ │ ├── lineColor.vert │ │ ├── position.vert │ │ ├── positionColor.frag │ │ ├── positionColor.vert │ │ ├── positionColorLengthTexture.frag │ │ ├── positionColorLengthTexture.vert │ │ ├── positionColorTextureAsPointsize.vert │ │ ├── positionNoMVP.vert │ │ ├── positionTexture.frag │ │ ├── positionTexture.vert │ │ ├── positionTextureColor.frag │ │ ├── positionTextureColor.vert │ │ ├── positionTextureColorAlphaTest.frag │ │ ├── positionTextureUColor.frag │ │ ├── positionTextureUColor.vert │ │ ├── positionUColor.frag │ │ ├── positionUColor.vert │ │ └── ui_Gray.frag ├── scripting │ ├── deprecated │ │ ├── CCArray.cpp │ │ ├── CCArray.h │ │ ├── CCBool.h │ │ ├── CCDataVisitor.cpp │ │ ├── CCDataVisitor.h │ │ ├── CCDeprecated.cpp │ │ ├── CCDeprecated.h │ │ ├── CCDictionary.cpp │ │ ├── CCDictionary.h │ │ ├── CCDouble.h │ │ ├── CCFloat.h │ │ ├── CCInteger.h │ │ ├── CCNotificationCenter.cpp │ │ ├── CCNotificationCenter.h │ │ ├── CCSet.cpp │ │ ├── CCSet.h │ │ ├── CCString.cpp │ │ ├── CCString.h │ │ └── CMakeLists.txt │ └── lua-bindings │ │ ├── CMakeLists.txt │ │ ├── auto │ │ ├── lua_cocos2dx_3d_auto.cpp │ │ ├── lua_cocos2dx_3d_auto.hpp │ │ ├── lua_cocos2dx_audioengine_auto.cpp │ │ ├── lua_cocos2dx_audioengine_auto.hpp │ │ ├── lua_cocos2dx_auto.cpp │ │ ├── lua_cocos2dx_auto.hpp │ │ ├── lua_cocos2dx_backend_auto.cpp │ │ ├── lua_cocos2dx_backend_auto.hpp │ │ ├── lua_cocos2dx_controller_auto.cpp │ │ ├── lua_cocos2dx_controller_auto.hpp │ │ ├── lua_cocos2dx_csloader_auto.cpp │ │ ├── lua_cocos2dx_csloader_auto.hpp │ │ ├── lua_cocos2dx_extension_auto.cpp │ │ ├── lua_cocos2dx_extension_auto.hpp │ │ ├── lua_cocos2dx_navmesh_auto.cpp │ │ ├── lua_cocos2dx_navmesh_auto.hpp │ │ ├── lua_cocos2dx_physics3d_auto.cpp │ │ ├── lua_cocos2dx_physics3d_auto.hpp │ │ ├── lua_cocos2dx_physics_auto.cpp │ │ ├── lua_cocos2dx_physics_auto.hpp │ │ ├── lua_cocos2dx_spine_auto.cpp │ │ ├── lua_cocos2dx_spine_auto.hpp │ │ ├── lua_cocos2dx_studio_auto.cpp │ │ ├── lua_cocos2dx_studio_auto.hpp │ │ ├── lua_cocos2dx_ui_auto.cpp │ │ ├── lua_cocos2dx_ui_auto.hpp │ │ ├── lua_cocos2dx_video_auto.cpp │ │ ├── lua_cocos2dx_video_auto.hpp │ │ ├── lua_cocos2dx_webview_auto.cpp │ │ └── lua_cocos2dx_webview_auto.hpp │ │ ├── manual │ │ ├── 3d │ │ │ ├── lua_cocos2dx_3d_manual.cpp │ │ │ └── lua_cocos2dx_3d_manual.h │ │ ├── CCComponentLua.cpp │ │ ├── CCComponentLua.h │ │ ├── CCLuaBridge.cpp │ │ ├── CCLuaBridge.h │ │ ├── CCLuaEngine.cpp │ │ ├── CCLuaEngine.h │ │ ├── CCLuaStack.cpp │ │ ├── CCLuaStack.h │ │ ├── CCLuaValue.cpp │ │ ├── CCLuaValue.h │ │ ├── Cocos2dxLuaLoader.cpp │ │ ├── Cocos2dxLuaLoader.h │ │ ├── Lua-BindingsExport.h │ │ ├── LuaBasicConversions.cpp │ │ ├── LuaBasicConversions.h │ │ ├── audioengine │ │ │ ├── lua_cocos2dx_audioengine_manual.cpp │ │ │ └── lua_cocos2dx_audioengine_manual.h │ │ ├── cocos2d │ │ │ ├── LuaScriptHandlerMgr.cpp │ │ │ ├── LuaScriptHandlerMgr.h │ │ │ ├── lua_cocos2dx_deprecated.cpp │ │ │ ├── lua_cocos2dx_deprecated.h │ │ │ ├── lua_cocos2dx_manual.cpp │ │ │ ├── lua_cocos2dx_manual.hpp │ │ │ ├── lua_cocos2dx_physics_manual.cpp │ │ │ └── lua_cocos2dx_physics_manual.hpp │ │ ├── cocostudio │ │ │ ├── CustomGUIReader.cpp │ │ │ ├── CustomGUIReader.h │ │ │ ├── lua-cocos-studio-conversions.cpp │ │ │ ├── lua-cocos-studio-conversions.h │ │ │ ├── lua_cocos2dx_coco_studio_manual.cpp │ │ │ ├── lua_cocos2dx_coco_studio_manual.hpp │ │ │ ├── lua_cocos2dx_csloader_manual.cpp │ │ │ └── lua_cocos2dx_csloader_manual.hpp │ │ ├── controller │ │ │ ├── lua_cocos2dx_controller_manual.cpp │ │ │ └── lua_cocos2dx_controller_manual.hpp │ │ ├── extension │ │ │ ├── lua_cocos2dx_extension_manual.cpp │ │ │ └── lua_cocos2dx_extension_manual.h │ │ ├── lua_module_register.cpp │ │ ├── lua_module_register.h │ │ ├── navmesh │ │ │ ├── lua_cocos2dx_navmesh_conversions.cpp │ │ │ ├── lua_cocos2dx_navmesh_conversions.h │ │ │ ├── lua_cocos2dx_navmesh_manual.cpp │ │ │ └── lua_cocos2dx_navmesh_manual.h │ │ ├── network │ │ │ ├── Lua_web_socket.cpp │ │ │ ├── Lua_web_socket.h │ │ │ ├── lua_cocos2dx_network_manual.cpp │ │ │ ├── lua_cocos2dx_network_manual.h │ │ │ ├── lua_downloader.cpp │ │ │ ├── lua_downloader.h │ │ │ ├── lua_extensions.c │ │ │ ├── lua_extensions.h │ │ │ ├── lua_xml_http_request.cpp │ │ │ └── lua_xml_http_request.h │ │ ├── physics3d │ │ │ ├── lua_cocos2dx_physics3d_manual.cpp │ │ │ └── lua_cocos2dx_physics3d_manual.h │ │ ├── platform │ │ │ ├── android │ │ │ │ ├── CCLuaJavaBridge.cpp │ │ │ │ ├── CCLuaJavaBridge.h │ │ │ │ └── jni │ │ │ │ │ ├── Cocos2dxLuaJavaBridge.cpp │ │ │ │ │ └── Cocos2dxLuaJavaBridge.h │ │ │ └── ios │ │ │ │ ├── CCLuaObjcBridge.h │ │ │ │ └── CCLuaObjcBridge.mm │ │ ├── spine │ │ │ ├── LuaSkeletonAnimation.cpp │ │ │ ├── LuaSkeletonAnimation.h │ │ │ ├── lua_cocos2dx_spine_manual.cpp │ │ │ └── lua_cocos2dx_spine_manual.hpp │ │ ├── tolua_fix.cpp │ │ ├── tolua_fix.h │ │ └── ui │ │ │ ├── lua_cocos2dx_ui_manual.cpp │ │ │ ├── lua_cocos2dx_ui_manual.hpp │ │ │ ├── lua_cocos2dx_video_manual.cpp │ │ │ ├── lua_cocos2dx_video_manual.hpp │ │ │ ├── lua_cocos2dx_webview_manual.cpp │ │ │ └── lua_cocos2dx_webview_manual.hpp │ │ ├── proj.android │ │ └── CMakeLists.txt │ │ └── script │ │ ├── 3d │ │ └── 3dConstants.lua │ │ ├── cocos2d │ │ ├── Cocos2d.lua │ │ ├── Cocos2dConstants.lua │ │ ├── DeprecatedCocos2dClass.lua │ │ ├── DeprecatedCocos2dEnum.lua │ │ ├── DeprecatedCocos2dFunc.lua │ │ ├── DrawPrimitives.lua │ │ ├── bitExtend.lua │ │ ├── deprecated.lua │ │ ├── functions.lua │ │ ├── json.lua │ │ ├── luaj.lua │ │ └── luaoc.lua │ │ ├── cocosdenshion │ │ └── AudioEngine.lua │ │ ├── cocostudio │ │ ├── CocoStudio.lua │ │ ├── DeprecatedCocoStudioClass.lua │ │ ├── DeprecatedCocoStudioFunc.lua │ │ └── StudioConstants.lua │ │ ├── controller │ │ └── ControllerConstants.lua │ │ ├── extension │ │ ├── DeprecatedExtensionClass.lua │ │ ├── DeprecatedExtensionEnum.lua │ │ ├── DeprecatedExtensionFunc.lua │ │ └── ExtensionConstants.lua │ │ ├── framework │ │ ├── components │ │ │ └── event.lua │ │ ├── device.lua │ │ ├── display.lua │ │ ├── extends │ │ │ ├── LayerEx.lua │ │ │ ├── MenuEx.lua │ │ │ ├── NodeEx.lua │ │ │ ├── SpriteEx.lua │ │ │ ├── UICheckBox.lua │ │ │ ├── UIEditBox.lua │ │ │ ├── UIListView.lua │ │ │ ├── UIPageView.lua │ │ │ ├── UIScrollView.lua │ │ │ ├── UISlider.lua │ │ │ ├── UITextField.lua │ │ │ └── UIWidget.lua │ │ ├── init.lua │ │ ├── package_support.lua │ │ └── transition.lua │ │ ├── init.lua │ │ ├── network │ │ ├── DeprecatedNetworkClass.lua │ │ ├── DeprecatedNetworkEnum.lua │ │ ├── DeprecatedNetworkFunc.lua │ │ └── NetworkConstants.lua │ │ ├── physics3d │ │ └── physics3d-constants.lua │ │ ├── spine │ │ └── SpineConstants.lua │ │ └── ui │ │ ├── DeprecatedUIEnum.lua │ │ ├── DeprecatedUIFunc.lua │ │ └── GuiConstants.lua └── ui │ ├── CMakeLists.txt │ ├── CocosGUI.cpp │ ├── CocosGUI.h │ ├── GUIDefine.h │ ├── GUIExport.h │ ├── UIAbstractCheckButton.cpp │ ├── UIAbstractCheckButton.h │ ├── UIButton.cpp │ ├── UIButton.h │ ├── UICheckBox.cpp │ ├── UICheckBox.h │ ├── UIEditBox │ ├── Mac │ │ ├── CCUIEditBoxMac.h │ │ ├── CCUIEditBoxMac.mm │ │ ├── CCUIMultilineTextField.h │ │ ├── CCUIMultilineTextField.m │ │ ├── CCUIPasswordTextField.h │ │ ├── CCUIPasswordTextField.m │ │ ├── CCUISingleLineTextField.h │ │ ├── CCUISingleLineTextField.m │ │ ├── CCUITextFieldFormatter.h │ │ ├── CCUITextFieldFormatter.m │ │ └── CCUITextInput.h │ ├── UIEditBox.cpp │ ├── UIEditBox.h │ ├── UIEditBoxImpl-android.cpp │ ├── UIEditBoxImpl-android.h │ ├── UIEditBoxImpl-common.cpp │ ├── UIEditBoxImpl-common.h │ ├── UIEditBoxImpl-ios.h │ ├── UIEditBoxImpl-ios.mm │ ├── UIEditBoxImpl-linux.cpp │ ├── UIEditBoxImpl-linux.h │ ├── UIEditBoxImpl-mac.h │ ├── UIEditBoxImpl-mac.mm │ ├── UIEditBoxImpl-stub.cpp │ ├── UIEditBoxImpl-win32.cpp │ ├── UIEditBoxImpl-win32.h │ ├── UIEditBoxImpl.h │ └── iOS │ │ ├── CCUIEditBoxIOS.h │ │ ├── CCUIEditBoxIOS.mm │ │ ├── CCUIMultilineTextField.h │ │ ├── CCUIMultilineTextField.mm │ │ ├── CCUISingleLineTextField.h │ │ ├── CCUISingleLineTextField.mm │ │ ├── CCUITextInput.h │ │ ├── UITextField+CCUITextInput.h │ │ ├── UITextField+CCUITextInput.mm │ │ ├── UITextView+CCUITextInput.h │ │ └── UITextView+CCUITextInput.mm │ ├── UIHBox.cpp │ ├── UIHBox.h │ ├── UIHelper.cpp │ ├── UIHelper.h │ ├── UIImageView.cpp │ ├── UIImageView.h │ ├── UILayout.cpp │ ├── UILayout.h │ ├── UILayoutComponent.cpp │ ├── UILayoutComponent.h │ ├── UILayoutManager.cpp │ ├── UILayoutManager.h │ ├── UILayoutParameter.cpp │ ├── UILayoutParameter.h │ ├── UIListView.cpp │ ├── UIListView.h │ ├── UILoadingBar.cpp │ ├── UILoadingBar.h │ ├── UIPageView.cpp │ ├── UIPageView.h │ ├── UIPageViewIndicator.cpp │ ├── UIPageViewIndicator.h │ ├── UIRadioButton.cpp │ ├── UIRadioButton.h │ ├── UIRelativeBox.cpp │ ├── UIRelativeBox.h │ ├── UIRichText.cpp │ ├── UIRichText.h │ ├── UIScale9Sprite.cpp │ ├── UIScale9Sprite.h │ ├── UIScrollView.cpp │ ├── UIScrollView.h │ ├── UIScrollViewBar.cpp │ ├── UIScrollViewBar.h │ ├── UISlider.cpp │ ├── UISlider.h │ ├── UITabControl.cpp │ ├── UITabControl.h │ ├── UIText.cpp │ ├── UIText.h │ ├── UITextAtlas.cpp │ ├── UITextAtlas.h │ ├── UITextBMFont.cpp │ ├── UITextBMFont.h │ ├── UITextField.cpp │ ├── UITextField.h │ ├── UIVBox.cpp │ ├── UIVBox.h │ ├── UIVideoPlayer-android.cpp │ ├── UIVideoPlayer-ios.mm │ ├── UIVideoPlayer.h │ ├── UIWebView │ ├── UIWebView-inl.h │ ├── UIWebView.cpp │ ├── UIWebView.h │ ├── UIWebView.mm │ ├── UIWebViewImpl-android.cpp │ ├── UIWebViewImpl-android.h │ ├── UIWebViewImpl-ios.h │ └── UIWebViewImpl-ios.mm │ ├── UIWidget.cpp │ └── UIWidget.h ├── docs ├── .gitignore ├── CODING_STYLE.md ├── Groups.h ├── MainPage.h ├── MainPageWhiteBook.h ├── RELEASE_ENGINEERING.md ├── RELEASE_NOTES.md ├── RELEASE_NOTES_CN.md ├── cocos2dx_portrait.png ├── doxygen.config ├── doxygen_white_book.config ├── framework_architecture.jpg ├── framework_architecture_v4.png └── img-cocos.jpg ├── download-deps.py ├── extensions ├── CMakeLists.txt ├── ExtensionExport.h ├── ExtensionMacros.h ├── GUI │ ├── CCControlExtension │ │ ├── CCControl.cpp │ │ ├── CCControl.h │ │ ├── CCControlButton.cpp │ │ ├── CCControlButton.h │ │ ├── CCControlColourPicker.cpp │ │ ├── CCControlColourPicker.h │ │ ├── CCControlExtensions.h │ │ ├── CCControlHuePicker.cpp │ │ ├── CCControlHuePicker.h │ │ ├── CCControlPotentiometer.cpp │ │ ├── CCControlPotentiometer.h │ │ ├── CCControlSaturationBrightnessPicker.cpp │ │ ├── CCControlSaturationBrightnessPicker.h │ │ ├── CCControlSlider.cpp │ │ ├── CCControlSlider.h │ │ ├── CCControlStepper.cpp │ │ ├── CCControlStepper.h │ │ ├── CCControlSwitch.cpp │ │ ├── CCControlSwitch.h │ │ ├── CCControlUtils.cpp │ │ ├── CCControlUtils.h │ │ ├── CCInvocation.cpp │ │ └── CCInvocation.h │ └── CCScrollView │ │ ├── CCScrollView.cpp │ │ ├── CCScrollView.h │ │ ├── CCTableView.cpp │ │ ├── CCTableView.h │ │ ├── CCTableViewCell.cpp │ │ └── CCTableViewCell.h ├── Particle3D │ ├── CCParticle3DAffector.cpp │ ├── CCParticle3DAffector.h │ ├── CCParticle3DEmitter.cpp │ ├── CCParticle3DEmitter.h │ ├── CCParticle3DRender.cpp │ ├── CCParticle3DRender.h │ ├── CCParticleSystem3D.cpp │ ├── CCParticleSystem3D.h │ └── PU │ │ ├── CCPUAffector.cpp │ │ ├── CCPUAffector.h │ │ ├── CCPUAffectorManager.cpp │ │ ├── CCPUAffectorManager.h │ │ ├── CCPUAffectorTranslator.cpp │ │ ├── CCPUAffectorTranslator.h │ │ ├── CCPUAlignAffector.cpp │ │ ├── CCPUAlignAffector.h │ │ ├── CCPUAlignAffectorTranslator.cpp │ │ ├── CCPUAlignAffectorTranslator.h │ │ ├── CCPUBaseCollider.cpp │ │ ├── CCPUBaseCollider.h │ │ ├── CCPUBaseColliderTranslator.cpp │ │ ├── CCPUBaseColliderTranslator.h │ │ ├── CCPUBaseForceAffector.cpp │ │ ├── CCPUBaseForceAffector.h │ │ ├── CCPUBaseForceAffectorTranslator.cpp │ │ ├── CCPUBaseForceAffectorTranslator.h │ │ ├── CCPUBeamRender.cpp │ │ ├── CCPUBeamRender.h │ │ ├── CCPUBehaviour.cpp │ │ ├── CCPUBehaviour.h │ │ ├── CCPUBehaviourManager.cpp │ │ ├── CCPUBehaviourManager.h │ │ ├── CCPUBehaviourTranslator.cpp │ │ ├── CCPUBehaviourTranslator.h │ │ ├── CCPUBillboardChain.cpp │ │ ├── CCPUBillboardChain.h │ │ ├── CCPUBoxCollider.cpp │ │ ├── CCPUBoxCollider.h │ │ ├── CCPUBoxColliderTranslator.cpp │ │ ├── CCPUBoxColliderTranslator.h │ │ ├── CCPUBoxEmitter.cpp │ │ ├── CCPUBoxEmitter.h │ │ ├── CCPUBoxEmitterTranslator.cpp │ │ ├── CCPUBoxEmitterTranslator.h │ │ ├── CCPUCircleEmitter.cpp │ │ ├── CCPUCircleEmitter.h │ │ ├── CCPUCircleEmitterTranslator.cpp │ │ ├── CCPUCircleEmitterTranslator.h │ │ ├── CCPUCollisionAvoidanceAffector.cpp │ │ ├── CCPUCollisionAvoidanceAffector.h │ │ ├── CCPUCollisionAvoidanceAffectorTranslator.cpp │ │ ├── CCPUCollisionAvoidanceAffectorTranslator.h │ │ ├── CCPUColorAffector.cpp │ │ ├── CCPUColorAffector.h │ │ ├── CCPUColorAffectorTranslator.cpp │ │ ├── CCPUColorAffectorTranslator.h │ │ ├── CCPUDoAffectorEventHandler.cpp │ │ ├── CCPUDoAffectorEventHandler.h │ │ ├── CCPUDoAffectorEventHandlerTranslator.cpp │ │ ├── CCPUDoAffectorEventHandlerTranslator.h │ │ ├── CCPUDoEnableComponentEventHandler.cpp │ │ ├── CCPUDoEnableComponentEventHandler.h │ │ ├── CCPUDoEnableComponentEventHandlerTranslator.cpp │ │ ├── CCPUDoEnableComponentEventHandlerTranslator.h │ │ ├── CCPUDoExpireEventHandler.cpp │ │ ├── CCPUDoExpireEventHandler.h │ │ ├── CCPUDoExpireEventHandlerTranslator.cpp │ │ ├── CCPUDoExpireEventHandlerTranslator.h │ │ ├── CCPUDoFreezeEventHandler.cpp │ │ ├── CCPUDoFreezeEventHandler.h │ │ ├── CCPUDoFreezeEventHandlerTranslator.cpp │ │ ├── CCPUDoFreezeEventHandlerTranslator.h │ │ ├── CCPUDoPlacementParticleEventHandler.cpp │ │ ├── CCPUDoPlacementParticleEventHandler.h │ │ ├── CCPUDoPlacementParticleEventHandlerTranslator.cpp │ │ ├── CCPUDoPlacementParticleEventHandlerTranslator.h │ │ ├── CCPUDoScaleEventHandler.cpp │ │ ├── CCPUDoScaleEventHandler.h │ │ ├── CCPUDoScaleEventHandlerTranslator.cpp │ │ ├── CCPUDoScaleEventHandlerTranslator.h │ │ ├── CCPUDoStopSystemEventHandler.cpp │ │ ├── CCPUDoStopSystemEventHandler.h │ │ ├── CCPUDoStopSystemEventHandlerTranslator.cpp │ │ ├── CCPUDoStopSystemEventHandlerTranslator.h │ │ ├── CCPUDynamicAttribute.cpp │ │ ├── CCPUDynamicAttribute.h │ │ ├── CCPUDynamicAttributeTranslator.cpp │ │ ├── CCPUDynamicAttributeTranslator.h │ │ ├── CCPUEmitter.cpp │ │ ├── CCPUEmitter.h │ │ ├── CCPUEmitterManager.cpp │ │ ├── CCPUEmitterManager.h │ │ ├── CCPUEmitterTranslator.cpp │ │ ├── CCPUEmitterTranslator.h │ │ ├── CCPUEventHandler.cpp │ │ ├── CCPUEventHandler.h │ │ ├── CCPUEventHandlerManager.cpp │ │ ├── CCPUEventHandlerManager.h │ │ ├── CCPUEventHandlerTranslator.cpp │ │ ├── CCPUEventHandlerTranslator.h │ │ ├── CCPUFlockCenteringAffector.cpp │ │ ├── CCPUFlockCenteringAffector.h │ │ ├── CCPUFlockCenteringAffectorTranslator.cpp │ │ ├── CCPUFlockCenteringAffectorTranslator.h │ │ ├── CCPUForceField.cpp │ │ ├── CCPUForceField.h │ │ ├── CCPUForceFieldAffector.cpp │ │ ├── CCPUForceFieldAffector.h │ │ ├── CCPUForceFieldAffectorTranslator.cpp │ │ ├── CCPUForceFieldAffectorTranslator.h │ │ ├── CCPUGeometryRotator.cpp │ │ ├── CCPUGeometryRotator.h │ │ ├── CCPUGeometryRotatorTranslator.cpp │ │ ├── CCPUGeometryRotatorTranslator.h │ │ ├── CCPUGravityAffector.cpp │ │ ├── CCPUGravityAffector.h │ │ ├── CCPUGravityAffectorTranslator.cpp │ │ ├── CCPUGravityAffectorTranslator.h │ │ ├── CCPUInterParticleCollider.cpp │ │ ├── CCPUInterParticleCollider.h │ │ ├── CCPUInterParticleColliderTranslator.cpp │ │ ├── CCPUInterParticleColliderTranslator.h │ │ ├── CCPUJetAffector.cpp │ │ ├── CCPUJetAffector.h │ │ ├── CCPUJetAffectorTranslator.cpp │ │ ├── CCPUJetAffectorTranslator.h │ │ ├── CCPULineAffector.cpp │ │ ├── CCPULineAffector.h │ │ ├── CCPULineAffectorTranslator.cpp │ │ ├── CCPULineAffectorTranslator.h │ │ ├── CCPULineEmitter.cpp │ │ ├── CCPULineEmitter.h │ │ ├── CCPULineEmitterTranslator.cpp │ │ ├── CCPULineEmitterTranslator.h │ │ ├── CCPULinearForceAffector.cpp │ │ ├── CCPULinearForceAffector.h │ │ ├── CCPULinearForceAffectorTranslator.cpp │ │ ├── CCPULinearForceAffectorTranslator.h │ │ ├── CCPUListener.cpp │ │ ├── CCPUListener.h │ │ ├── CCPUMaterialManager.cpp │ │ ├── CCPUMaterialManager.h │ │ ├── CCPUMaterialTranslator.cpp │ │ ├── CCPUMaterialTranslator.h │ │ ├── CCPUMeshSurfaceEmitter.cpp │ │ ├── CCPUMeshSurfaceEmitter.h │ │ ├── CCPUMeshSurfaceEmitterTranslator.cpp │ │ ├── CCPUMeshSurfaceEmitterTranslator.h │ │ ├── CCPUNoise.cpp │ │ ├── CCPUNoise.h │ │ ├── CCPUObserver.cpp │ │ ├── CCPUObserver.h │ │ ├── CCPUObserverManager.cpp │ │ ├── CCPUObserverManager.h │ │ ├── CCPUObserverTranslator.cpp │ │ ├── CCPUObserverTranslator.h │ │ ├── CCPUOnClearObserver.cpp │ │ ├── CCPUOnClearObserver.h │ │ ├── CCPUOnClearObserverTranslator.cpp │ │ ├── CCPUOnClearObserverTranslator.h │ │ ├── CCPUOnCollisionObserver.cpp │ │ ├── CCPUOnCollisionObserver.h │ │ ├── CCPUOnCollisionObserverTranslator.cpp │ │ ├── CCPUOnCollisionObserverTranslator.h │ │ ├── CCPUOnCountObserver.cpp │ │ ├── CCPUOnCountObserver.h │ │ ├── CCPUOnCountObserverTranslator.cpp │ │ ├── CCPUOnCountObserverTranslator.h │ │ ├── CCPUOnEmissionObserver.cpp │ │ ├── CCPUOnEmissionObserver.h │ │ ├── CCPUOnEmissionObserverTranslator.cpp │ │ ├── CCPUOnEmissionObserverTranslator.h │ │ ├── CCPUOnEventFlagObserver.cpp │ │ ├── CCPUOnEventFlagObserver.h │ │ ├── CCPUOnEventFlagObserverTranslator.cpp │ │ ├── CCPUOnEventFlagObserverTranslator.h │ │ ├── CCPUOnExpireObserver.cpp │ │ ├── CCPUOnExpireObserver.h │ │ ├── CCPUOnExpireObserverTranslator.cpp │ │ ├── CCPUOnExpireObserverTranslator.h │ │ ├── CCPUOnPositionObserver.cpp │ │ ├── CCPUOnPositionObserver.h │ │ ├── CCPUOnPositionObserverTranslator.cpp │ │ ├── CCPUOnPositionObserverTranslator.h │ │ ├── CCPUOnQuotaObserver.cpp │ │ ├── CCPUOnQuotaObserver.h │ │ ├── CCPUOnQuotaObserverTranslator.cpp │ │ ├── CCPUOnQuotaObserverTranslator.h │ │ ├── CCPUOnRandomObserver.cpp │ │ ├── CCPUOnRandomObserver.h │ │ ├── CCPUOnRandomObserverTranslator.cpp │ │ ├── CCPUOnRandomObserverTranslator.h │ │ ├── CCPUOnTimeObserver.cpp │ │ ├── CCPUOnTimeObserver.h │ │ ├── CCPUOnTimeObserverTranslator.cpp │ │ ├── CCPUOnTimeObserverTranslator.h │ │ ├── CCPUOnVelocityObserver.cpp │ │ ├── CCPUOnVelocityObserver.h │ │ ├── CCPUOnVelocityObserverTranslator.cpp │ │ ├── CCPUOnVelocityObserverTranslator.h │ │ ├── CCPUParticleFollower.cpp │ │ ├── CCPUParticleFollower.h │ │ ├── CCPUParticleFollowerTranslator.cpp │ │ ├── CCPUParticleFollowerTranslator.h │ │ ├── CCPUParticleSystem3D.cpp │ │ ├── CCPUParticleSystem3D.h │ │ ├── CCPUParticleSystem3DTranslator.cpp │ │ ├── CCPUParticleSystem3DTranslator.h │ │ ├── CCPUPathFollower.cpp │ │ ├── CCPUPathFollower.h │ │ ├── CCPUPathFollowerTranslator.cpp │ │ ├── CCPUPathFollowerTranslator.h │ │ ├── CCPUPlane.cpp │ │ ├── CCPUPlane.h │ │ ├── CCPUPlaneCollider.cpp │ │ ├── CCPUPlaneCollider.h │ │ ├── CCPUPlaneColliderTranslator.cpp │ │ ├── CCPUPlaneColliderTranslator.h │ │ ├── CCPUPointEmitter.cpp │ │ ├── CCPUPointEmitter.h │ │ ├── CCPUPointEmitterTranslator.cpp │ │ ├── CCPUPointEmitterTranslator.h │ │ ├── CCPUPositionEmitter.cpp │ │ ├── CCPUPositionEmitter.h │ │ ├── CCPUPositionEmitterTranslator.cpp │ │ ├── CCPUPositionEmitterTranslator.h │ │ ├── CCPURandomiser.cpp │ │ ├── CCPURandomiser.h │ │ ├── CCPURandomiserTranslator.cpp │ │ ├── CCPURandomiserTranslator.h │ │ ├── CCPURender.cpp │ │ ├── CCPURender.h │ │ ├── CCPURendererTranslator.cpp │ │ ├── CCPURendererTranslator.h │ │ ├── CCPURibbonTrail.cpp │ │ ├── CCPURibbonTrail.h │ │ ├── CCPURibbonTrailRender.cpp │ │ ├── CCPURibbonTrailRender.h │ │ ├── CCPUScaleAffector.cpp │ │ ├── CCPUScaleAffector.h │ │ ├── CCPUScaleAffectorTranslator.cpp │ │ ├── CCPUScaleAffectorTranslator.h │ │ ├── CCPUScaleVelocityAffector.cpp │ │ ├── CCPUScaleVelocityAffector.h │ │ ├── CCPUScaleVelocityAffectorTranslator.cpp │ │ ├── CCPUScaleVelocityAffectorTranslator.h │ │ ├── CCPUScriptCompiler.cpp │ │ ├── CCPUScriptCompiler.h │ │ ├── CCPUScriptLexer.cpp │ │ ├── CCPUScriptLexer.h │ │ ├── CCPUScriptParser.cpp │ │ ├── CCPUScriptParser.h │ │ ├── CCPUScriptTranslator.cpp │ │ ├── CCPUScriptTranslator.h │ │ ├── CCPUSimpleSpline.cpp │ │ ├── CCPUSimpleSpline.h │ │ ├── CCPUSineForceAffector.cpp │ │ ├── CCPUSineForceAffector.h │ │ ├── CCPUSineForceAffectorTranslator.cpp │ │ ├── CCPUSineForceAffectorTranslator.h │ │ ├── CCPUSlaveBehaviour.cpp │ │ ├── CCPUSlaveBehaviour.h │ │ ├── CCPUSlaveBehaviourTranslator.cpp │ │ ├── CCPUSlaveBehaviourTranslator.h │ │ ├── CCPUSlaveEmitter.cpp │ │ ├── CCPUSlaveEmitter.h │ │ ├── CCPUSlaveEmitterTranslator.cpp │ │ ├── CCPUSlaveEmitterTranslator.h │ │ ├── CCPUSphere.cpp │ │ ├── CCPUSphere.h │ │ ├── CCPUSphereCollider.cpp │ │ ├── CCPUSphereCollider.h │ │ ├── CCPUSphereColliderTranslator.cpp │ │ ├── CCPUSphereColliderTranslator.h │ │ ├── CCPUSphereSurfaceEmitter.cpp │ │ ├── CCPUSphereSurfaceEmitter.h │ │ ├── CCPUSphereSurfaceEmitterTranslator.cpp │ │ ├── CCPUSphereSurfaceEmitterTranslator.h │ │ ├── CCPUTechniqueTranslator.cpp │ │ ├── CCPUTechniqueTranslator.h │ │ ├── CCPUTextureAnimator.cpp │ │ ├── CCPUTextureAnimator.h │ │ ├── CCPUTextureAnimatorTranslator.cpp │ │ ├── CCPUTextureAnimatorTranslator.h │ │ ├── CCPUTextureRotator.cpp │ │ ├── CCPUTextureRotator.h │ │ ├── CCPUTextureRotatorTranslator.cpp │ │ ├── CCPUTextureRotatorTranslator.h │ │ ├── CCPUTranslateManager.cpp │ │ ├── CCPUTranslateManager.h │ │ ├── CCPUUtil.cpp │ │ ├── CCPUUtil.h │ │ ├── CCPUVelocityMatchingAffector.cpp │ │ ├── CCPUVelocityMatchingAffector.h │ │ ├── CCPUVelocityMatchingAffectorTranslator.cpp │ │ ├── CCPUVelocityMatchingAffectorTranslator.h │ │ ├── CCPUVertexEmitter.cpp │ │ ├── CCPUVertexEmitter.h │ │ ├── CCPUVortexAffector.cpp │ │ ├── CCPUVortexAffector.h │ │ ├── CCPUVortexAffectorTranslator.cpp │ │ └── CCPUVortexAffectorTranslator.h ├── assets-manager │ ├── AssetsManager.cpp │ ├── AssetsManager.h │ ├── AssetsManagerEx.cpp │ ├── AssetsManagerEx.h │ ├── CCEventAssetsManagerEx.cpp │ ├── CCEventAssetsManagerEx.h │ ├── CCEventListenerAssetsManagerEx.cpp │ ├── CCEventListenerAssetsManagerEx.h │ ├── Manifest.cpp │ └── Manifest.h ├── cocos-ext.h └── physics-nodes │ ├── CCPhysicsDebugNode.cpp │ ├── CCPhysicsDebugNode.h │ ├── CCPhysicsSprite.cpp │ └── CCPhysicsSprite.h ├── external └── config.json ├── install-deps-linux.sh ├── issue_template.md ├── licenses ├── LICENSE_AA-EDT.txt ├── LICENSE_CCBReader.txt ├── LICENSE_CCControlExtension.txt ├── LICENSE_JSON4Lua.txt ├── LICENSE_Kazmath.txt ├── LICENSE_LuaSocket.txt ├── LICENSE_Poly2Tri.txt ├── LICENSE_artwork.txt ├── LICENSE_box2d.txt ├── LICENSE_chipmunk.txt ├── LICENSE_cocos2d-iphone.txt ├── LICENSE_cocos2d-x.txt ├── LICENSE_com.android.vending.expansion.zipfile.txt ├── LICENSE_curl.txt ├── LICENSE_jsoncpp.txt ├── LICENSE_libjpeg.txt ├── LICENSE_libmd5-rfc.txt ├── LICENSE_libpng.txt ├── LICENSE_libwebsockets.txt ├── LICENSE_libxml2.txt ├── LICENSE_llvm.txt ├── LICENSE_lua.txt ├── LICENSE_ogg_vorbis.txt ├── LICENSE_pvmp3dec.txt ├── LICENSE_spine.txt ├── LICENSE_tolua++.txt ├── LICENSE_tremolo.txt ├── LICENSE_unicode.txt └── LICENSE_zlib.txt ├── setup.py ├── templates ├── cocos2dx_files.json ├── cpp-template-default │ ├── CMakeLists.txt │ ├── Classes │ │ ├── AppDelegate.cpp │ │ ├── AppDelegate.h │ │ ├── HelloWorldScene.cpp │ │ └── HelloWorldScene.h │ ├── Resources │ │ ├── CloseNormal.png │ │ ├── CloseSelected.png │ │ ├── HelloWorld.png │ │ ├── fonts │ │ │ ├── Marker Felt.ttf │ │ │ └── arial.ttf │ │ └── res │ │ │ └── .gitkeep │ ├── cocos-project-template.json │ ├── proj.android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ └── hellocpp │ │ │ │ │ └── main.cpp │ │ │ ├── proguard-rules.pro │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── cpp │ │ │ │ └── AppActivity.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── proj.ios_mac │ │ ├── ios │ │ │ ├── AppController.h │ │ │ ├── AppController.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-20.png │ │ │ │ │ ├── Icon-20@2x.png │ │ │ │ │ ├── Icon-20@3x.png │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ ├── Icon-40.png │ │ │ │ │ ├── Icon-40@2x.png │ │ │ │ │ ├── Icon-40@3x.png │ │ │ │ │ ├── Icon-50.png │ │ │ │ │ ├── Icon-50@2x.png │ │ │ │ │ ├── Icon-57.png │ │ │ │ │ ├── Icon-57@2x.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ └── Icon-83.5@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── LaunchScreenBackground.png │ │ │ ├── Prefix.pch │ │ │ ├── RootViewController.h │ │ │ ├── RootViewController.mm │ │ │ ├── exportoptions.plist │ │ │ └── main.m │ │ └── mac │ │ │ ├── Icon.icns │ │ │ ├── Info.plist │ │ │ ├── Prefix.pch │ │ │ └── main.cpp │ ├── proj.linux │ │ └── main.cpp │ └── proj.win32 │ │ ├── build-cfg.json │ │ ├── game.rc │ │ ├── main.cpp │ │ ├── main.h │ │ ├── res │ │ └── game.ico │ │ └── resource.h └── lua-template-default │ ├── .project │ ├── .settings │ └── version.json │ ├── CMakeLists.txt │ ├── cocos-project-template.json │ ├── config.json │ ├── frameworks │ └── runtime-src │ │ ├── Classes │ │ ├── AppDelegate.cpp │ │ └── AppDelegate.h │ │ ├── proj.android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── get_environment.sh │ │ │ ├── jni │ │ │ │ └── hellolua │ │ │ │ │ └── main.cpp │ │ │ ├── proguard-rules.pro │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── lua │ │ │ │ └── AppActivity.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ │ ├── proj.ios_mac │ │ ├── ios │ │ │ ├── AppController.h │ │ │ ├── AppController.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-20.png │ │ │ │ │ ├── Icon-20@2x.png │ │ │ │ │ ├── Icon-20@3x.png │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ ├── Icon-40.png │ │ │ │ │ ├── Icon-40@2x.png │ │ │ │ │ ├── Icon-40@3x.png │ │ │ │ │ ├── Icon-50.png │ │ │ │ │ ├── Icon-50@2x.png │ │ │ │ │ ├── Icon-57.png │ │ │ │ │ ├── Icon-57@2x.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ └── Icon-83.5@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── LaunchScreenBackground.png │ │ │ ├── Prefix.pch │ │ │ ├── RootViewController.h │ │ │ ├── RootViewController.mm │ │ │ ├── build-cfg.json │ │ │ ├── exportoptions.plist │ │ │ └── main.m │ │ └── mac │ │ │ ├── Icon.icns │ │ │ ├── Info.plist │ │ │ ├── Prefix.pch │ │ │ ├── build-cfg.json │ │ │ └── main.cpp │ │ ├── proj.linux │ │ └── main.cpp │ │ └── proj.win32 │ │ ├── build-cfg.json │ │ ├── game.rc │ │ ├── main.cpp │ │ ├── main.h │ │ └── res │ │ └── game.ico │ ├── res │ └── HelloWorld.png │ └── src │ ├── app │ ├── MyApp.lua │ └── views │ │ └── MainScene.lua │ ├── config.lua │ ├── main.lua │ └── packages │ └── mvc │ ├── AppBase.lua │ ├── ViewBase.lua │ └── init.lua ├── tests ├── .gitignore ├── cpp-empty-test │ ├── .cocos-project.json │ ├── CMakeLists.txt │ ├── Classes │ │ ├── AppDelegate.cpp │ │ ├── AppDelegate.h │ │ ├── AppMacros.h │ │ ├── HelloWorldScene.cpp │ │ └── HelloWorldScene.h │ ├── Resources │ │ ├── .gitignore │ │ ├── bang.png │ │ ├── fonts │ │ │ ├── Marker Felt.ttf │ │ │ └── arial.ttf │ │ ├── icons │ │ │ ├── Icon-20.png │ │ │ ├── Icon-20@2x.png │ │ │ ├── Icon-20@3x.png │ │ │ ├── Icon-29.png │ │ │ ├── Icon-29@2x.png │ │ │ ├── Icon-29@3x.png │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-50.png │ │ │ ├── Icon-50@2x.png │ │ │ ├── Icon-57.png │ │ │ ├── Icon-57@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ └── Icon-83.5@2x.png │ │ ├── ipad │ │ │ ├── CloseNormal.png │ │ │ ├── CloseSelected.png │ │ │ ├── HelloWorld.png │ │ │ ├── grossini.png │ │ │ └── uv_checker_01.jpg │ │ ├── ipadhd │ │ │ ├── CloseNormal.png │ │ │ ├── CloseSelected.png │ │ │ └── HelloWorld.png │ │ └── iphone │ │ │ ├── CloseNormal.png │ │ │ ├── CloseSelected.png │ │ │ └── HelloWorld.png │ ├── proj.android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ └── main.cpp │ │ │ ├── proguard-rules.pro │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── cpp_empty_test │ │ │ │ └── AppActivity.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── proj.ios │ │ ├── AppController.h │ │ ├── AppController.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon-cpp-empty-test.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-20.png │ │ │ │ ├── Icon-20@2x.png │ │ │ │ ├── Icon-20@3x.png │ │ │ │ ├── Icon-29.png │ │ │ │ ├── Icon-29@2x.png │ │ │ │ ├── Icon-29@3x.png │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-40@2x.png │ │ │ │ ├── Icon-40@3x.png │ │ │ │ ├── Icon-50.png │ │ │ │ ├── Icon-50@2x.png │ │ │ │ ├── Icon-57.png │ │ │ │ ├── Icon-57@2x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-72.png │ │ │ │ ├── Icon-72@2x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ └── Icon-83.5@2x.png │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── LaunchScreenBackground.png │ │ ├── RootViewController.h │ │ ├── RootViewController.mm │ │ ├── exportoptions.plist │ │ └── main.m │ ├── proj.linux │ │ └── main.cpp │ ├── proj.mac │ │ ├── Icon.icns │ │ ├── Info.plist │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.cpp │ └── proj.win32 │ │ ├── build-cfg.json │ │ ├── main.cpp │ │ └── main.h ├── cpp-tests │ ├── .cocos-project.json │ ├── CMakeLists.txt │ ├── Classes │ │ ├── ActionManagerTest │ │ │ ├── ActionManagerTest.cpp │ │ │ └── ActionManagerTest.h │ │ ├── ActionsEaseTest │ │ │ ├── ActionsEaseTest.cpp │ │ │ └── ActionsEaseTest.h │ │ ├── ActionsProgressTest │ │ │ ├── ActionsProgressTest.cpp │ │ │ └── ActionsProgressTest.h │ │ ├── ActionsTest │ │ │ ├── ActionsTest.cpp │ │ │ └── ActionsTest.h │ │ ├── AppDelegate.cpp │ │ ├── AppDelegate.h │ │ ├── BaseTest.cpp │ │ ├── BaseTest.h │ │ ├── BillBoardTest │ │ │ ├── BillBoardTest.cpp │ │ │ └── BillBoardTest.h │ │ ├── BugsTest │ │ │ ├── Bug-1159.cpp │ │ │ ├── Bug-1159.h │ │ │ ├── Bug-1174.cpp │ │ │ ├── Bug-1174.h │ │ │ ├── Bug-12847.cpp │ │ │ ├── Bug-12847.h │ │ │ ├── Bug-14327.cpp │ │ │ ├── Bug-14327.h │ │ │ ├── Bug-15594.cpp │ │ │ ├── Bug-15594.h │ │ │ ├── Bug-15776.cpp │ │ │ ├── Bug-15776.h │ │ │ ├── Bug-350.cpp │ │ │ ├── Bug-350.h │ │ │ ├── Bug-422.cpp │ │ │ ├── Bug-422.h │ │ │ ├── Bug-458 │ │ │ │ ├── Bug-458.cpp │ │ │ │ ├── Bug-458.h │ │ │ │ ├── QuestionContainerSprite.cpp │ │ │ │ └── QuestionContainerSprite.h │ │ │ ├── Bug-624.cpp │ │ │ ├── Bug-624.h │ │ │ ├── Bug-886.cpp │ │ │ ├── Bug-886.h │ │ │ ├── Bug-899.cpp │ │ │ ├── Bug-899.h │ │ │ ├── Bug-914.cpp │ │ │ ├── Bug-914.h │ │ │ ├── Bug-CCDrawNode.cpp │ │ │ ├── Bug-CCDrawNode.h │ │ │ ├── Bug-Child.cpp │ │ │ ├── Bug-Child.h │ │ │ ├── BugsTest.cpp │ │ │ └── BugsTest.h │ │ ├── Camera3DTest │ │ │ ├── Camera3DTest.cpp │ │ │ └── Camera3DTest.h │ │ ├── ChipmunkTest │ │ │ ├── ChipmunkTest.cpp │ │ │ └── ChipmunkTest.h │ │ ├── ClickAndMoveTest │ │ │ ├── ClickAndMoveTest.cpp │ │ │ └── ClickAndMoveTest.h │ │ ├── ClippingNodeTest │ │ │ ├── ClippingNodeTest.cpp │ │ │ └── ClippingNodeTest.h │ │ ├── ConfigurationTest │ │ │ ├── ConfigurationTest.cpp │ │ │ └── ConfigurationTest.h │ │ ├── ConsoleTest │ │ │ ├── ConsoleTest.cpp │ │ │ └── ConsoleTest.h │ │ ├── CurlTest │ │ │ ├── CurlTest.cpp │ │ │ └── CurlTest.h │ │ ├── CurrentLanguageTest │ │ │ ├── CurrentLanguageTest.cpp │ │ │ └── CurrentLanguageTest.h │ │ ├── DataVisitorTest │ │ │ ├── DataVisitorTest.cpp │ │ │ └── DataVisitorTest.h │ │ ├── DownloaderTest │ │ │ ├── DownloaderTest.cpp │ │ │ └── DownloaderTest.h │ │ ├── DrawPrimitivesTest │ │ │ ├── DrawPrimitivesTest.cpp │ │ │ └── DrawPrimitivesTest.h │ │ ├── EffectsAdvancedTest │ │ │ ├── EffectsAdvancedTest.cpp │ │ │ └── EffectsAdvancedTest.h │ │ ├── EffectsTest │ │ │ ├── EffectsTest.cpp │ │ │ └── EffectsTest.h │ │ ├── ExtensionsTest │ │ │ ├── AssetsManagerExTest │ │ │ │ ├── AssetsManagerExTest.cpp │ │ │ │ └── AssetsManagerExTest.h │ │ │ ├── ExtensionsTest.cpp │ │ │ ├── ExtensionsTest.h │ │ │ ├── NetworkTest │ │ │ │ ├── HttpClientTest.cpp │ │ │ │ ├── HttpClientTest.h │ │ │ │ ├── SocketIOTest.cpp │ │ │ │ ├── SocketIOTest.h │ │ │ │ ├── WebSocketDelayTest.cpp │ │ │ │ ├── WebSocketDelayTest.h │ │ │ │ ├── WebSocketTest.cpp │ │ │ │ └── WebSocketTest.h │ │ │ └── TableViewTest │ │ │ │ ├── CustomTableViewCell.cpp │ │ │ │ ├── CustomTableViewCell.h │ │ │ │ ├── TableViewTestScene.cpp │ │ │ │ └── TableViewTestScene.h │ │ ├── FileUtilsTest │ │ │ ├── FileUtilsTest.cpp │ │ │ └── FileUtilsTest.h │ │ ├── FontTest │ │ │ ├── FontTest.cpp │ │ │ └── FontTest.h │ │ ├── InputTest │ │ │ ├── MouseTest.cpp │ │ │ └── MouseTest.h │ │ ├── IntervalTest │ │ │ ├── IntervalTest.cpp │ │ │ └── IntervalTest.h │ │ ├── JNITest │ │ │ ├── JNITest.cpp │ │ │ └── JNITest.h │ │ ├── LabelTest │ │ │ ├── LabelTestNew.cpp │ │ │ └── LabelTestNew.h │ │ ├── LayerTest │ │ │ ├── LayerTest.cpp │ │ │ └── LayerTest.h │ │ ├── LightTest │ │ │ ├── LightTest.cpp │ │ │ └── LightTest.h │ │ ├── MaterialSystemTest │ │ │ ├── MaterialSystemTest.cpp │ │ │ └── MaterialSystemTest.h │ │ ├── MenuTest │ │ │ ├── MenuTest.cpp │ │ │ └── MenuTest.h │ │ ├── MotionStreakTest │ │ │ ├── MotionStreakTest.cpp │ │ │ └── MotionStreakTest.h │ │ ├── MultiTouchTest │ │ │ ├── MultiTouchTest.cpp │ │ │ └── MultiTouchTest.h │ │ ├── NavMeshTest │ │ │ ├── NavMeshTest.cpp │ │ │ └── NavMeshTest.h │ │ ├── NewAudioEngineTest │ │ │ ├── NewAudioEngineTest.cpp │ │ │ └── NewAudioEngineTest.h │ │ ├── NewEventDispatcherTest │ │ │ ├── NewEventDispatcherTest.cpp │ │ │ └── NewEventDispatcherTest.h │ │ ├── NewRendererTest │ │ │ ├── NewRendererTest.cpp │ │ │ └── NewRendererTest.h │ │ ├── NodeTest │ │ │ ├── NodeTest.cpp │ │ │ └── NodeTest.h │ │ ├── OpenURLTest │ │ │ ├── OpenURLTest.cpp │ │ │ └── OpenURLTest.h │ │ ├── ParallaxTest │ │ │ ├── ParallaxTest.cpp │ │ │ └── ParallaxTest.h │ │ ├── Particle3DTest │ │ │ ├── Particle3DTest.cpp │ │ │ └── Particle3DTest.h │ │ ├── ParticleTest │ │ │ ├── ParticleTest.cpp │ │ │ └── ParticleTest.h │ │ ├── Physics3DTest │ │ │ ├── Physics3DTest.cpp │ │ │ └── Physics3DTest.h │ │ ├── PhysicsTest │ │ │ ├── PhysicsTest.cpp │ │ │ └── PhysicsTest.h │ │ ├── ReleasePoolTest │ │ │ ├── ReleasePoolTest.cpp │ │ │ └── ReleasePoolTest.h │ │ ├── RenderTextureTest │ │ │ ├── RenderTextureTest.cpp │ │ │ └── RenderTextureTest.h │ │ ├── RotateWorldTest │ │ │ ├── RotateWorldTest.cpp │ │ │ └── RotateWorldTest.h │ │ ├── Scene3DTest │ │ │ ├── Scene3DTest.cpp │ │ │ └── Scene3DTest.h │ │ ├── SceneTest │ │ │ ├── SceneTest.cpp │ │ │ └── SceneTest.h │ │ ├── SchedulerTest │ │ │ ├── SchedulerTest.cpp │ │ │ └── SchedulerTest.h │ │ ├── ShaderTest │ │ │ ├── ShaderTest.cpp │ │ │ ├── ShaderTest.h │ │ │ ├── ShaderTest.vsh.h │ │ │ ├── ShaderTest2.cpp │ │ │ ├── ShaderTest2.h │ │ │ └── shaderTest.psh.h │ │ ├── SpineTest │ │ │ ├── SpineTest.cpp │ │ │ └── SpineTest.h │ │ ├── Sprite3DTest │ │ │ ├── DrawNode3D.cpp │ │ │ ├── DrawNode3D.h │ │ │ ├── Sprite3DTest.cpp │ │ │ └── Sprite3DTest.h │ │ ├── SpriteFrameCacheTest │ │ │ ├── SpriteFrameCacheTest.cpp │ │ │ └── SpriteFrameCacheTest.h │ │ ├── SpritePolygonTest │ │ │ ├── SpritePolygonTest.cpp │ │ │ └── SpritePolygonTest.h │ │ ├── SpriteTest │ │ │ ├── SpriteTest.cpp │ │ │ └── SpriteTest.h │ │ ├── TerrainTest │ │ │ ├── TerrainTest.cpp │ │ │ └── TerrainTest.h │ │ ├── TextInputTest │ │ │ ├── TextInputTest.cpp │ │ │ └── TextInputTest.h │ │ ├── Texture2dTest │ │ │ ├── Texture2dTest.cpp │ │ │ └── Texture2dTest.h │ │ ├── TextureCacheTest │ │ │ ├── TextureCacheTest.cpp │ │ │ └── TextureCacheTest.h │ │ ├── TexturePackerEncryptionTest │ │ │ ├── TextureAtlasEncryptionTest.cpp │ │ │ └── TextureAtlasEncryptionTest.h │ │ ├── TileMapTest │ │ │ ├── TileMapTest.cpp │ │ │ ├── TileMapTest.h │ │ │ ├── TileMapTest2.cpp │ │ │ └── TileMapTest2.h │ │ ├── TouchesTest │ │ │ ├── Ball.cpp │ │ │ ├── Ball.h │ │ │ ├── Paddle.cpp │ │ │ ├── Paddle.h │ │ │ ├── TouchesTest.cpp │ │ │ └── TouchesTest.h │ │ ├── TransitionsTest │ │ │ ├── TransitionsTest.cpp │ │ │ └── TransitionsTest.h │ │ ├── UITest │ │ │ ├── CocoStudioGUITest │ │ │ │ ├── CocosGUIScene.cpp │ │ │ │ ├── CocosGUIScene.h │ │ │ │ ├── UIButtonTest │ │ │ │ │ ├── UIButtonTest.cpp │ │ │ │ │ └── UIButtonTest.h │ │ │ │ ├── UICheckBoxTest │ │ │ │ │ ├── UICheckBoxTest.cpp │ │ │ │ │ └── UICheckBoxTest.h │ │ │ │ ├── UIEditBoxTest.cpp │ │ │ │ ├── UIEditBoxTest.h │ │ │ │ ├── UIFocusTest │ │ │ │ │ ├── UIFocusTest.cpp │ │ │ │ │ └── UIFocusTest.h │ │ │ │ ├── UIImageViewTest │ │ │ │ │ ├── UIImageViewTest.cpp │ │ │ │ │ └── UIImageViewTest.h │ │ │ │ ├── UILayoutTest │ │ │ │ │ ├── UILayoutTest.cpp │ │ │ │ │ └── UILayoutTest.h │ │ │ │ ├── UIListViewTest │ │ │ │ │ ├── UIListViewTest.cpp │ │ │ │ │ └── UIListViewTest.h │ │ │ │ ├── UILoadingBarTest │ │ │ │ │ ├── UILoadingBarTest.cpp │ │ │ │ │ └── UILoadingBarTest.h │ │ │ │ ├── UIPageViewTest │ │ │ │ │ ├── UIPageViewTest.cpp │ │ │ │ │ └── UIPageViewTest.h │ │ │ │ ├── UIRadioButtonTest │ │ │ │ │ ├── UIRadioButtonTest.cpp │ │ │ │ │ └── UIRadioButtonTest.h │ │ │ │ ├── UIRichTextTest │ │ │ │ │ ├── UIRichTextTest.cpp │ │ │ │ │ └── UIRichTextTest.h │ │ │ │ ├── UIScale9SpriteTest.cpp │ │ │ │ ├── UIScale9SpriteTest.h │ │ │ │ ├── UIScene.cpp │ │ │ │ ├── UIScene.h │ │ │ │ ├── UISceneManager.cpp │ │ │ │ ├── UISceneManager.h │ │ │ │ ├── UIScrollViewTest │ │ │ │ │ ├── UIScrollViewTest.cpp │ │ │ │ │ └── UIScrollViewTest.h │ │ │ │ ├── UISliderTest │ │ │ │ │ ├── UISliderTest.cpp │ │ │ │ │ └── UISliderTest.h │ │ │ │ ├── UITabControlTest │ │ │ │ │ ├── UITabControlTest.cpp │ │ │ │ │ └── UITabControlTest.h │ │ │ │ ├── UITextAtlasTest │ │ │ │ │ ├── UITextAtlasTest.cpp │ │ │ │ │ └── UITextAtlasTest.h │ │ │ │ ├── UITextBMFontTest │ │ │ │ │ ├── UITextBMFontTest.cpp │ │ │ │ │ └── UITextBMFontTest.h │ │ │ │ ├── UITextFieldTest │ │ │ │ │ ├── UITextFieldTest.cpp │ │ │ │ │ └── UITextFieldTest.h │ │ │ │ ├── UITextTest │ │ │ │ │ ├── UITextTest.cpp │ │ │ │ │ └── UITextTest.h │ │ │ │ ├── UIVideoPlayerTest │ │ │ │ │ ├── UIVideoPlayerTest.cpp │ │ │ │ │ └── UIVideoPlayerTest.h │ │ │ │ ├── UIWebViewTest │ │ │ │ │ ├── UIWebViewTest.cpp │ │ │ │ │ └── UIWebViewTest.h │ │ │ │ └── UIWidgetAddNodeTest │ │ │ │ │ ├── UIWidgetAddNodeTest.cpp │ │ │ │ │ └── UIWidgetAddNodeTest.h │ │ │ ├── UITest.cpp │ │ │ └── UITest.h │ │ ├── UnitTest │ │ │ ├── RefPtrTest.h │ │ │ ├── UnitTest.cpp │ │ │ └── UnitTest.h │ │ ├── UserDefaultTest │ │ │ ├── UserDefaultTest.cpp │ │ │ └── UserDefaultTest.h │ │ ├── VRTest │ │ │ ├── VRTest.cpp │ │ │ └── VRTest.h │ │ ├── VibrateTest │ │ │ ├── VibrateTest.cpp │ │ │ └── VibrateTest.h │ │ ├── VisibleRect.cpp │ │ ├── VisibleRect.h │ │ ├── WindowTest │ │ │ ├── WindowTest.cpp │ │ │ └── WindowTest.h │ │ ├── ZipTest │ │ │ ├── ZipTests.cpp │ │ │ └── ZipTests.h │ │ ├── ZwoptexTest │ │ │ ├── ZwoptexTest.cpp │ │ │ └── ZwoptexTest.h │ │ ├── controller.cpp │ │ ├── controller.h │ │ ├── precheader.cpp │ │ ├── precheader.h │ │ ├── testBasic.h │ │ ├── testResource.h │ │ └── tests.h │ ├── Resources │ │ ├── .gitignore │ │ ├── ActionTimeline │ │ │ ├── ActionTimelineEase.csb │ │ │ ├── Animation.csb │ │ │ ├── Animation.csd │ │ │ ├── Default │ │ │ │ ├── Button_Disable.png │ │ │ │ ├── Sprite.png │ │ │ │ └── defaultParticle.plist │ │ │ ├── DemoPlayer.csb │ │ │ ├── DemoPlayer_skeleton.csb │ │ │ ├── DemoPlayer_skeleton.json │ │ │ ├── Particles │ │ │ │ └── Comet.plist │ │ │ ├── TestAnimation.csb │ │ │ ├── TestAnimation.csd │ │ │ ├── TestNullProjectNode.csb │ │ │ ├── TestNullProjectNode.csd │ │ │ ├── ani1.csb │ │ │ ├── ani2.csb │ │ │ ├── boy_1.ExportJson │ │ │ ├── boy_1.csb │ │ │ ├── skeletonBlendFuncFrame.csb │ │ │ └── testAnimationResource │ │ │ │ ├── 01.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ ├── girl_arms.png │ │ │ │ └── hat.png │ │ ├── CocosBuilderExample.ccbproj │ │ ├── CocosBuilderExample.ccbresourcelog │ │ ├── Hello.png │ │ ├── Images │ │ │ ├── BoilingFoam.plist │ │ │ ├── Comet.png │ │ │ ├── CyanSquare.png │ │ │ ├── CyanTriangle.png │ │ │ ├── ETC1.pkm │ │ │ ├── Fog.png │ │ │ ├── HelloWorld.png │ │ │ ├── Icon.png │ │ │ ├── MagentaSquare.png │ │ │ ├── Pea.png │ │ │ ├── SendScoreButton.png │ │ │ ├── SendScoreButtonPressed.png │ │ │ ├── SpinningPeas.png │ │ │ ├── SpookyPeas.png │ │ │ ├── YellowSquare.png │ │ │ ├── YellowTriangle.png │ │ │ ├── arrows-hd.png │ │ │ ├── arrows.png │ │ │ ├── arrowsBar-hd.png │ │ │ ├── arrowsBar.png │ │ │ ├── assetMgrBackground1.jpg │ │ │ ├── assetMgrBackground2.png │ │ │ ├── assetMgrBackground3.png │ │ │ ├── atlastest.png │ │ │ ├── b1.png │ │ │ ├── b2.png │ │ │ ├── background.png │ │ │ ├── background1.jpg │ │ │ ├── background1.png │ │ │ ├── background2.jpg │ │ │ ├── background2.png │ │ │ ├── background3.jpg │ │ │ ├── background3.png │ │ │ ├── ball.png │ │ │ ├── bitmapFontTest3.fnt │ │ │ ├── bitmapFontTest3.png │ │ │ ├── blocks.png │ │ │ ├── blocks9.png │ │ │ ├── blocks9c.png │ │ │ ├── blocks9cr.png │ │ │ ├── blocks9r.png │ │ │ ├── blocks9ss.plist │ │ │ ├── blocks9ss.png │ │ │ ├── blocks9ss.tps │ │ │ ├── btn-about-normal-vertical.png │ │ │ ├── btn-about-normal.png │ │ │ ├── btn-about-selected.png │ │ │ ├── btn-highscores-normal.png │ │ │ ├── btn-highscores-selected.png │ │ │ ├── btn-play-normal.png │ │ │ ├── btn-play-selected.png │ │ │ ├── bug12847_sprite.png │ │ │ ├── bug12847_spriteframe.plist │ │ │ ├── bug12847_spriteframe.png │ │ │ ├── bug14017.png │ │ │ ├── bugs │ │ │ │ ├── RetinaDisplay.jpg │ │ │ │ ├── bug15594.c3t │ │ │ │ ├── bug15594.jpg │ │ │ │ ├── bug886.jpg │ │ │ │ ├── bug886.png │ │ │ │ ├── circle.plist │ │ │ │ ├── circle.png │ │ │ │ ├── corner.png │ │ │ │ ├── edge.png │ │ │ │ ├── fill.png │ │ │ │ └── picture.png │ │ │ ├── close.png │ │ │ ├── cocos-html5.png │ │ │ ├── cocos2dbanner.png │ │ │ ├── concave.png │ │ │ ├── dot.png │ │ │ ├── elephant1_Diffuse.png │ │ │ ├── elephant1_Normal.png │ │ │ ├── encryptedAtlas.plist │ │ │ ├── encryptedAtlas.pvr.ccz │ │ │ ├── encryptedAtlas.tps │ │ │ ├── etc1-alpha.pkm │ │ │ ├── etc1-alpha.pkm@alpha │ │ │ ├── f1.png │ │ │ ├── f2.png │ │ │ ├── favicon.ico │ │ │ ├── fire-grayscale.png │ │ │ ├── fire.png │ │ │ ├── fire_rgba8888.pvr │ │ │ ├── fps_images.png │ │ │ ├── grossini.png │ │ │ ├── grossini_128x256_mipmap.pvr │ │ │ ├── grossini_dance_01.png │ │ │ ├── grossini_dance_02.png │ │ │ ├── grossini_dance_03.png │ │ │ ├── grossini_dance_04.png │ │ │ ├── grossini_dance_05.png │ │ │ ├── grossini_dance_06.png │ │ │ ├── grossini_dance_07.png │ │ │ ├── grossini_dance_08.png │ │ │ ├── grossini_dance_09.png │ │ │ ├── grossini_dance_10.png │ │ │ ├── grossini_dance_11.png │ │ │ ├── grossini_dance_12.png │ │ │ ├── grossini_dance_13.png │ │ │ ├── grossini_dance_14.png │ │ │ ├── grossini_dance_atlas-mono.png │ │ │ ├── grossini_dance_atlas.png │ │ │ ├── grossini_dance_atlas_nomipmap.png │ │ │ ├── grossini_pvr_rgba4444.pvr │ │ │ ├── grossini_pvr_rgba8888.pvr │ │ │ ├── grossinis_heads.png │ │ │ ├── grossinis_sister1-testalpha.png │ │ │ ├── grossinis_sister1-testalpha.ppng │ │ │ ├── grossinis_sister1-testalpha_nopremult.pvr │ │ │ ├── grossinis_sister1-testalpha_premult.pvr │ │ │ ├── grossinis_sister1.png │ │ │ ├── grossinis_sister2.png │ │ │ ├── heightfield64x64.raw │ │ │ ├── hole_effect.png │ │ │ ├── hole_stencil.png │ │ │ ├── island_polygon.png │ │ │ ├── issue_17116.plist │ │ │ ├── issue_17116.png │ │ │ ├── issue_17119.plist │ │ │ ├── issue_17119.png │ │ │ ├── labelatlas.png │ │ │ ├── logo-mipmap.pvr │ │ │ ├── logo-nomipmap.pvr │ │ │ ├── lookup-desktop.plist │ │ │ ├── lookup-html5.plist │ │ │ ├── lookup-mobile.plist │ │ │ ├── menuitemsprite.png │ │ │ ├── movement.png │ │ │ ├── noise.png │ │ │ ├── nonencryptedAtlas.plist │ │ │ ├── nonencryptedAtlas.pvr.ccz │ │ │ ├── nonencryptedAtlas.tps │ │ │ ├── paddle.png │ │ │ ├── particles-hd.png │ │ │ ├── particles.png │ │ │ ├── pattern1.png │ │ │ ├── piece.png │ │ │ ├── poly_test_textures.plist │ │ │ ├── poly_test_textures.png │ │ │ ├── powered.png │ │ │ ├── r1.png │ │ │ ├── r2.png │ │ │ ├── shapemode.png │ │ │ ├── snow.png │ │ │ ├── sprite_frames_test │ │ │ │ ├── test_A8.plist │ │ │ │ ├── test_A8.png │ │ │ │ ├── test_AI88.plist │ │ │ │ ├── test_AI88.png │ │ │ │ ├── test_NoFormat.plist │ │ │ │ ├── test_PVRTC2.plist │ │ │ │ ├── test_PVRTC2.pvr │ │ │ │ ├── test_PVRTC2_NOALPHA.plist │ │ │ │ ├── test_PVRTC2_NOALPHA.pvr │ │ │ │ ├── test_PVRTC4.plist │ │ │ │ ├── test_PVRTC4.pvr │ │ │ │ ├── test_RGB565.plist │ │ │ │ ├── test_RGB888.plist │ │ │ │ ├── test_RGBA4444.plist │ │ │ │ ├── test_RGBA5551.plist │ │ │ │ ├── test_RGBA5555.plist │ │ │ │ ├── test_RGBA8888.plist │ │ │ │ └── test_RGBA8888.png │ │ │ ├── sprite_polygon_crash.png │ │ │ ├── sprites_test │ │ │ │ ├── sprite-0-0.png │ │ │ │ ├── sprite-0-1.png │ │ │ │ ├── sprite-0-2.png │ │ │ │ ├── sprite-0-3.png │ │ │ │ ├── sprite-0-4.png │ │ │ │ ├── sprite-0-5.png │ │ │ │ ├── sprite-0-6.png │ │ │ │ ├── sprite-0-7.png │ │ │ │ ├── sprite-1-0.png │ │ │ │ ├── sprite-1-1.png │ │ │ │ ├── sprite-1-2.png │ │ │ │ ├── sprite-1-3.png │ │ │ │ ├── sprite-1-4.png │ │ │ │ ├── sprite-1-5.png │ │ │ │ ├── sprite-1-6.png │ │ │ │ ├── sprite-1-7.png │ │ │ │ ├── sprite-2-0.png │ │ │ │ ├── sprite-2-1.png │ │ │ │ ├── sprite-2-2.png │ │ │ │ ├── sprite-2-3.png │ │ │ │ ├── sprite-2-4.png │ │ │ │ ├── sprite-2-5.png │ │ │ │ ├── sprite-2-6.png │ │ │ │ ├── sprite-2-7.png │ │ │ │ ├── sprite-3-0.png │ │ │ │ ├── sprite-3-1.png │ │ │ │ ├── sprite-3-2.png │ │ │ │ ├── sprite-3-3.png │ │ │ │ ├── sprite-3-4.png │ │ │ │ ├── sprite-3-5.png │ │ │ │ ├── sprite-3-6.png │ │ │ │ ├── sprite-3-7.png │ │ │ │ ├── sprite-4-0.png │ │ │ │ ├── sprite-4-1.png │ │ │ │ ├── sprite-4-2.png │ │ │ │ ├── sprite-4-3.png │ │ │ │ ├── sprite-4-4.png │ │ │ │ ├── sprite-4-5.png │ │ │ │ ├── sprite-4-6.png │ │ │ │ ├── sprite-4-7.png │ │ │ │ ├── sprite-5-0.png │ │ │ │ ├── sprite-5-1.png │ │ │ │ ├── sprite-5-2.png │ │ │ │ ├── sprite-5-3.png │ │ │ │ ├── sprite-5-4.png │ │ │ │ ├── sprite-5-5.png │ │ │ │ ├── sprite-5-6.png │ │ │ │ ├── sprite-5-7.png │ │ │ │ ├── sprite-6-0.png │ │ │ │ ├── sprite-6-1.png │ │ │ │ ├── sprite-6-2.png │ │ │ │ ├── sprite-6-3.png │ │ │ │ ├── sprite-6-4.png │ │ │ │ ├── sprite-6-5.png │ │ │ │ ├── sprite-6-6.png │ │ │ │ ├── sprite-6-7.png │ │ │ │ ├── sprite-7-0.png │ │ │ │ ├── sprite-7-1.png │ │ │ │ ├── sprite-7-2.png │ │ │ │ ├── sprite-7-3.png │ │ │ │ ├── sprite-7-4.png │ │ │ │ ├── sprite-7-5.png │ │ │ │ ├── sprite-7-6.png │ │ │ │ └── sprite-7-7.png │ │ │ ├── stars-grayscale.png │ │ │ ├── stars.png │ │ │ ├── stars2-grayscale.png │ │ │ ├── stars2.png │ │ │ ├── stone.png │ │ │ ├── streak.png │ │ │ ├── test-rgba1.png │ │ │ ├── test_1021x1024_a8.pvr.gz │ │ │ ├── test_256x256_ATC_RGBA_Explicit_mipmaps.ktx │ │ │ ├── test_256x256_ATC_RGBA_Interpolated_mipmaps.ktx │ │ │ ├── test_256x256_ATC_RGB_mipmaps.ktx │ │ │ ├── test_256x256_s3tc_dxt1_mipmaps.dds │ │ │ ├── test_256x256_s3tc_dxt3_mipmaps.dds │ │ │ ├── test_256x256_s3tc_dxt5_mipmaps.dds │ │ │ ├── test_512x512_s3tc_dxt5_with_no_mipmaps.dds │ │ │ ├── test_blend.png │ │ │ ├── test_image-bad_encoding.pvr │ │ │ ├── test_image.jpeg │ │ │ ├── test_image.png │ │ │ ├── test_image.pvr │ │ │ ├── test_image.pvrraw │ │ │ ├── test_image.webp │ │ │ ├── test_image_a8.pvr │ │ │ ├── test_image_a8_v3.pvr │ │ │ ├── test_image_ai88.png │ │ │ ├── test_image_ai88.pvr │ │ │ ├── test_image_ai88_v3.pvr │ │ │ ├── test_image_bgra8888.pvr │ │ │ ├── test_image_bgra8888_v3.pvr │ │ │ ├── test_image_i8.png │ │ │ ├── test_image_i8.pvr │ │ │ ├── test_image_i8_v3.pvr │ │ │ ├── test_image_no_alpha.webp │ │ │ ├── test_image_pvrtc2bpp.pvr │ │ │ ├── test_image_pvrtc2bpp_v3.pvr │ │ │ ├── test_image_pvrtc4bpp.pvr │ │ │ ├── test_image_pvrtc4bpp_v3.pvr │ │ │ ├── test_image_pvrtcii2bpp_v3.pvr │ │ │ ├── test_image_pvrtcii4bpp_v3.pvr │ │ │ ├── test_image_rgb565.pvr │ │ │ ├── test_image_rgb565_v3.pvr │ │ │ ├── test_image_rgb888.png │ │ │ ├── test_image_rgb888.pvr │ │ │ ├── test_image_rgb888_v3.pvr │ │ │ ├── test_image_rgba4444.pvr │ │ │ ├── test_image_rgba4444.pvr.ccz │ │ │ ├── test_image_rgba4444.pvr.gz │ │ │ ├── test_image_rgba4444_mipmap.pvr │ │ │ ├── test_image_rgba4444_v3.pvr │ │ │ ├── test_image_rgba5551.pvr │ │ │ ├── test_image_rgba5551_v3.pvr │ │ │ ├── test_image_rgba8888.png │ │ │ ├── test_image_rgba8888.pvr │ │ │ ├── test_image_rgba8888_v3.pvr │ │ │ ├── test_polygon.plist │ │ │ ├── test_polygon.png │ │ │ ├── test_polygon.tps │ │ │ ├── texture1024x1024.png │ │ │ ├── texture2048x2048.png │ │ │ ├── texture512x512.png │ │ │ ├── texturemode.png │ │ │ ├── ui.plist │ │ │ ├── ui.png │ │ │ ├── water_2_dxt1.dds │ │ │ ├── water_2_dxt3.dds │ │ │ ├── water_2_dxt5.dds │ │ │ ├── white-512x512.png │ │ │ └── wood.jpg │ │ ├── Manifests │ │ │ ├── AMTestScene1 │ │ │ │ └── project.manifest │ │ │ ├── AMTestScene2 │ │ │ │ └── project.manifest │ │ │ ├── AMTestScene3 │ │ │ │ └── project.manifest │ │ │ ├── AMTestScene4 │ │ │ │ └── project.manifest │ │ │ └── ScriptTest │ │ │ │ └── project.manifest │ │ ├── Materials │ │ │ ├── 2d_effects.material │ │ │ ├── 3d_effects.material │ │ │ └── auto_binding_test.material │ │ ├── Misc │ │ │ ├── resources-hd │ │ │ │ └── test4.txt │ │ │ ├── resources-ipad │ │ │ │ └── test2.txt │ │ │ ├── resources-ipadhd │ │ │ │ └── test1.txt │ │ │ ├── resources-iphone │ │ │ │ └── test6.txt │ │ │ ├── resources-mac │ │ │ │ └── test2.txt │ │ │ ├── resources-machd │ │ │ │ └── test1.txt │ │ │ ├── resources-wide │ │ │ │ └── test5.txt │ │ │ ├── resources-widehd │ │ │ │ └── test3.txt │ │ │ ├── searchpath1 │ │ │ │ └── file1.txt │ │ │ └── searchpath2 │ │ │ │ └── resources-ipad │ │ │ │ └── file2.txt │ │ ├── NavMesh │ │ │ ├── all_tiles_tilecache.bin │ │ │ ├── geomset.txt │ │ │ ├── maps │ │ │ │ └── scenetex.png │ │ │ ├── scene.mtl │ │ │ └── scene.obj │ │ ├── Particle3D │ │ │ ├── materials │ │ │ │ ├── pu_example.material │ │ │ │ └── pu_mediapack_01.material │ │ │ ├── scripts │ │ │ │ ├── UVAnimation.pu │ │ │ │ ├── advancedLodSystem.pu │ │ │ │ ├── blackHole.pu │ │ │ │ ├── canOfWorms.pu │ │ │ │ ├── electricBeamSystem.pu │ │ │ │ ├── example_004.pu │ │ │ │ ├── explosionSystem.pu │ │ │ │ ├── flameSystem.pu │ │ │ │ ├── flareShield.pu │ │ │ │ ├── hypno.pu │ │ │ │ ├── lightningBolt.pu │ │ │ │ ├── lineStreak.pu │ │ │ │ ├── mp_hit_04.pu │ │ │ │ ├── mp_torch.pu │ │ │ │ ├── ribbonTrailTest.pu │ │ │ │ ├── timeShift.pu │ │ │ │ └── weaponTrail.pu │ │ │ └── textures │ │ │ │ ├── crate6.png │ │ │ │ ├── interpolate.png │ │ │ │ ├── mp_explosion_04.dds │ │ │ │ ├── mp_explosion_debris.dds │ │ │ │ ├── mp_explosion_smoke_01.dds │ │ │ │ ├── mp_fire_02_2x2.dds │ │ │ │ ├── mp_fire_02_2x2.png │ │ │ │ ├── pu_barrel_01.png │ │ │ │ ├── pu_barrel_02.png │ │ │ │ ├── pu_bbal.png │ │ │ │ ├── pu_beam_01.png │ │ │ │ ├── pu_beam_02.png │ │ │ │ ├── pu_circle.png │ │ │ │ ├── pu_dirt_256x512.png │ │ │ │ ├── pu_dot_03_64x64.png │ │ │ │ ├── pu_fire_01_64x64.png │ │ │ │ ├── pu_flame.png │ │ │ │ ├── pu_flare.png │ │ │ │ ├── pu_flare_12_256x256.png │ │ │ │ ├── pu_green_ball.png │ │ │ │ ├── pu_hart.png │ │ │ │ ├── pu_lightning_20x64.png │ │ │ │ ├── pu_nucleus.png │ │ │ │ ├── pu_plate.jpg │ │ │ │ ├── pu_rain.png │ │ │ │ ├── pu_rain_01.png │ │ │ │ ├── pu_ribbontrail.png │ │ │ │ ├── pu_sand_336x330.png │ │ │ │ ├── pu_smoke_02_128x128.png │ │ │ │ ├── pu_smoke_brown_336x330.png │ │ │ │ ├── pu_stone.jpeg │ │ │ │ ├── pump_atlas_smoke.png │ │ │ │ ├── pump_biohazzard.png │ │ │ │ ├── pump_bubble.png │ │ │ │ ├── pump_bubble_blurred.png │ │ │ │ ├── pump_celticknot.png │ │ │ │ ├── pump_dirt_01.png │ │ │ │ ├── pump_dirt_02.png │ │ │ │ ├── pump_flame_01.png │ │ │ │ ├── pump_flame_02.png │ │ │ │ ├── pump_flame_03.png │ │ │ │ ├── pump_flame_04.png │ │ │ │ ├── pump_flare_01.png │ │ │ │ ├── pump_flare_02.png │ │ │ │ ├── pump_flare_03.png │ │ │ │ ├── pump_flare_04.png │ │ │ │ ├── pump_flare_05.png │ │ │ │ ├── pump_flare_06.png │ │ │ │ ├── pump_genesis_01.png │ │ │ │ ├── pump_genesis_02.png │ │ │ │ ├── pump_hourglass.png │ │ │ │ ├── pump_leave.png │ │ │ │ ├── pump_lightning_01.png │ │ │ │ ├── pump_lightning_02.png │ │ │ │ ├── pump_lightning_03.png │ │ │ │ ├── pump_lightning_04.png │ │ │ │ ├── pump_mcdxiiiv.png │ │ │ │ ├── pump_metal_01.png │ │ │ │ ├── pump_metal_02.png │ │ │ │ ├── pump_mmviii.png │ │ │ │ ├── pump_pentagram_01.png │ │ │ │ ├── pump_pentagram_02.png │ │ │ │ ├── pump_ring_01.png │ │ │ │ ├── pump_ring_02.png │ │ │ │ ├── pump_ring_03.png │ │ │ │ ├── pump_ring_04.png │ │ │ │ ├── pump_ring_05.png │ │ │ │ ├── pump_smoke_01.png │ │ │ │ ├── pump_smoke_02.png │ │ │ │ ├── pump_smoke_03.png │ │ │ │ ├── pump_smoke_04.png │ │ │ │ ├── pump_smoke_05.png │ │ │ │ ├── pump_smoke_06.png │ │ │ │ ├── pump_smoke_07.png │ │ │ │ ├── pump_snow_01.png │ │ │ │ ├── pump_spark_01.png │ │ │ │ ├── pump_star_01.png │ │ │ │ ├── pump_star_02.png │ │ │ │ ├── pump_star_03.png │ │ │ │ ├── pump_star_04.png │ │ │ │ ├── pump_star_05.png │ │ │ │ ├── pump_streak_01.png │ │ │ │ ├── pump_streak_02.png │ │ │ │ ├── pump_streak_03.png │ │ │ │ ├── pump_streak_04.png │ │ │ │ ├── pump_swirl_01.png │ │ │ │ ├── pump_swirl_02.png │ │ │ │ ├── pump_swirl_03.png │ │ │ │ ├── pump_watch.png │ │ │ │ └── weaponTrail.png │ │ ├── Particles │ │ │ ├── BoilingFoam.plist │ │ │ ├── BoilingFoamStar.plist │ │ │ ├── BurstPipe.plist │ │ │ ├── ButterFly.plist │ │ │ ├── ButterFlyYFlipped.plist │ │ │ ├── Comet.plist │ │ │ ├── ExplodingRing.plist │ │ │ ├── Flower.plist │ │ │ ├── Galaxy.plist │ │ │ ├── LavaFlow.plist │ │ │ ├── Phoenix.plist │ │ │ ├── SmallSun.plist │ │ │ ├── SpinningPeas.plist │ │ │ ├── Spiral.plist │ │ │ ├── SpookyPeas.plist │ │ │ ├── SpriteFrame.plist │ │ │ ├── SpriteFrame.png │ │ │ ├── TestPremultipliedAlpha.plist │ │ │ ├── Upsidedown.plist │ │ │ ├── butterfly.png │ │ │ ├── debian.plist │ │ │ ├── lines.plist │ │ │ ├── particle.png │ │ │ └── pea.png │ │ ├── Presentation │ │ │ ├── chipmunk_status.png │ │ │ ├── cocos2d_status.png │ │ │ ├── cocosbuilder_status.png │ │ │ ├── comparison.png │ │ │ ├── gdkaccelerator.png │ │ │ ├── html5accelerator.png │ │ │ ├── proxy_model.png │ │ │ └── stack.graffle │ │ ├── Shaders │ │ │ ├── example_3D_PositionTex.fsh │ │ │ ├── example_3D_PositionTex.vsh │ │ │ ├── example_Bloom.fsh │ │ │ ├── example_Blur.fsh │ │ │ ├── example_Blur_winrt.fsh │ │ │ ├── example_CelShading.fsh │ │ │ ├── example_ColorBars.fsh │ │ │ ├── example_ColorBars.vsh │ │ │ ├── example_EdgeDetection.fsh │ │ │ ├── example_Flower.fsh │ │ │ ├── example_GreyScale.fsh │ │ │ ├── example_Heart.fsh │ │ │ ├── example_HorizontalColor.fsh │ │ │ ├── example_Julia.fsh │ │ │ ├── example_LensFlare.fsh │ │ │ ├── example_Mandelbrot.fsh │ │ │ ├── example_Monjori.fsh │ │ │ ├── example_MultiTexture.fsh │ │ │ ├── example_MultiTexture.vsh │ │ │ ├── example_Noisy.fsh │ │ │ ├── example_Normal.fsh │ │ │ ├── example_Outline.fsh │ │ │ ├── example_Plasma.fsh │ │ │ ├── example_Sepia.fsh │ │ │ ├── example_Simple.vsh │ │ │ ├── example_Twist.fsh │ │ │ ├── shadertoy_FireBall.fsh │ │ │ ├── shadertoy_Glow.fsh │ │ │ └── shadertoy_LensFlare.fsh │ │ ├── Shaders3D │ │ │ ├── 3d_color_normal_tex.frag │ │ │ ├── 3d_color_tex.frag │ │ │ ├── 3d_position_normal_tex.vert │ │ │ ├── 3d_position_skin_tex.vert │ │ │ ├── 3d_position_tex.vert │ │ │ ├── Normal.frag │ │ │ ├── OutLine.frag │ │ │ ├── OutLine.vert │ │ │ └── SkinnedOutline.vert │ │ ├── Sprite3DTest │ │ │ ├── BasicToon.material │ │ │ ├── CubeMap.material │ │ │ ├── FakeShadow.material │ │ │ ├── Floor.png │ │ │ ├── Girl_Face.png │ │ │ ├── Girl_Glasses01.png │ │ │ ├── Girl_Hair01.png │ │ │ ├── Girl_Hair02.png │ │ │ ├── Girl_Hand.png │ │ │ ├── Girl_LowerBody01.png │ │ │ ├── Girl_LowerBody02.png │ │ │ ├── Girl_Shoes01.png │ │ │ ├── Girl_Shoes02.png │ │ │ ├── Girl_UpperBody01.png │ │ │ ├── Girl_UpperBody02.png │ │ │ ├── LightMapScene.c3b │ │ │ ├── ReskinGirl.c3b │ │ │ ├── UVAnimation.material │ │ │ ├── VertexColor.frag │ │ │ ├── VertexColor.material │ │ │ ├── VertexColor.vert │ │ │ ├── Xie_01.png │ │ │ ├── arx.png │ │ │ ├── axe.c3b │ │ │ ├── ball.c3b │ │ │ ├── body.png │ │ │ ├── boss.c3b │ │ │ ├── boss.obj │ │ │ ├── boss.png │ │ │ ├── boss1.obj │ │ │ ├── box.c3t │ │ │ ├── box_VertexCol.c3t │ │ │ ├── brickwork-texture.jpg │ │ │ ├── brickwork_normal-map.jpg │ │ │ ├── caustics.png │ │ │ ├── circle.png │ │ │ ├── cube_map.frag │ │ │ ├── cube_map.vert │ │ │ ├── cylinder.c3b │ │ │ ├── cylinder.frag │ │ │ ├── cylinder.vert │ │ │ ├── dragon.png │ │ │ ├── fog.frag │ │ │ ├── fog.vert │ │ │ ├── girl.c3b │ │ │ ├── mesh_model.c3b │ │ │ ├── monguger.tga │ │ │ ├── orc.c3b │ │ │ ├── orc.c3t │ │ │ ├── orc_jump.c3t │ │ │ ├── outline.material │ │ │ ├── plane.c3t │ │ │ ├── plane.png │ │ │ ├── shadowCircle.png │ │ │ ├── simple_shadow.frag │ │ │ ├── simple_shadow.vert │ │ │ ├── skybox │ │ │ │ ├── back.jpg │ │ │ │ ├── bottom.jpg │ │ │ │ ├── front.jpg │ │ │ │ ├── left.jpg │ │ │ │ ├── right.jpg │ │ │ │ └── top.jpg │ │ │ ├── sphere.c3b │ │ │ ├── sphere_bumped.c3b │ │ │ ├── spheretex.png │ │ │ ├── teapot.c3b │ │ │ ├── teapot.png │ │ │ ├── texture.png │ │ │ ├── toon.frag │ │ │ ├── toon.vert │ │ │ ├── tortoise.c3b │ │ │ └── tortoise.png │ │ ├── TerrainTest │ │ │ ├── Grass1.jpg │ │ │ ├── Grass2.jpg │ │ │ ├── GreenSkin.jpg │ │ │ ├── Lightmap.png │ │ │ ├── alphamap.png │ │ │ ├── dirt.jpg │ │ │ ├── heightmap129.jpg │ │ │ ├── heightmap16.jpg │ │ │ ├── road.jpg │ │ │ ├── road.png │ │ │ └── sand.jpg │ │ ├── Test.html │ │ ├── TileMaps │ │ │ ├── fixed-ortho-test2.png │ │ │ ├── grass.png │ │ │ ├── grass01.png │ │ │ ├── hexa-axis-x.png │ │ │ ├── hexa-axis-x.tmx │ │ │ ├── hexa-test.tmx │ │ │ ├── hexa-tiles.png │ │ │ ├── hexagonal-mini-even-x.tmx │ │ │ ├── hexagonal-mini-even-y.tmx │ │ │ ├── hexagonal-mini-odd-x.tmx │ │ │ ├── hexagonal-mini-odd-y.tmx │ │ │ ├── hexmini.png │ │ │ ├── iso-test-bug787.tmx │ │ │ ├── iso-test-movelayer.tmx │ │ │ ├── iso-test-objectgroup.tmx │ │ │ ├── iso-test-vertexz.tmx │ │ │ ├── iso-test-zorder.tmx │ │ │ ├── iso-test.png │ │ │ ├── iso-test.tmx │ │ │ ├── iso-test1.tmx │ │ │ ├── iso-test2-uncompressed.tmx │ │ │ ├── iso-test2.png │ │ │ ├── iso-test2.tmx │ │ │ ├── iso.png │ │ │ ├── issue16105.tmx │ │ │ ├── issue_16512.png │ │ │ ├── issue_16512.tmx │ │ │ ├── levelmap.tga │ │ │ ├── ortho-objects.tmx │ │ │ ├── ortho-rotation-test.tmx │ │ │ ├── ortho-test1.png │ │ │ ├── ortho-test1_bw.png │ │ │ ├── ortho-test2.png │ │ │ ├── ortho-tile-property.tmx │ │ │ ├── orthogonal-test-movelayer.tmx │ │ │ ├── orthogonal-test-vertexz.tmx │ │ │ ├── orthogonal-test-zorder.tmx │ │ │ ├── orthogonal-test1.tmx │ │ │ ├── orthogonal-test1.tsx │ │ │ ├── orthogonal-test2.tmx │ │ │ ├── orthogonal-test3.tmx │ │ │ ├── orthogonal-test4-hd.tmx │ │ │ ├── orthogonal-test4.tmx │ │ │ ├── orthogonal-test5-csv.tmx │ │ │ ├── orthogonal-test5.tmx │ │ │ ├── orthogonal-test6-hd.tmx │ │ │ ├── orthogonal-test6.tmx │ │ │ ├── test-object-layer.tmx │ │ │ ├── test-staggered.tmx │ │ │ ├── tile_iso_offset.png │ │ │ ├── tile_iso_offset.tmx │ │ │ ├── tiles-hd.png │ │ │ ├── tiles.png │ │ │ ├── tmw_desert_spacing-hd.png │ │ │ ├── tmw_desert_spacing.png │ │ │ ├── xml-test.tmx │ │ │ └── xml-test.tsx │ │ ├── animations │ │ │ ├── MUS_BGM_Battle_Round1_v1.caf │ │ │ ├── animations-2.plist │ │ │ ├── animations.plist │ │ │ ├── crystals.plist │ │ │ ├── crystals.png │ │ │ ├── dragon_animation-hd.png │ │ │ ├── dragon_animation.png │ │ │ ├── ghosts.plist │ │ │ ├── ghosts.png │ │ │ ├── grassini_dance_poly.tps │ │ │ ├── grossini-aliases.plist │ │ │ ├── grossini-aliases.png │ │ │ ├── grossini.plist │ │ │ ├── grossini.plist.xml │ │ │ ├── grossini.png │ │ │ ├── grossini.pvr.gz │ │ │ ├── grossini.zss │ │ │ ├── grossini.ztp │ │ │ ├── grossini_anchors.plist │ │ │ ├── grossini_anchors.png │ │ │ ├── grossini_blue.plist │ │ │ ├── grossini_blue.png │ │ │ ├── grossini_dance_poly.plist │ │ │ ├── grossini_dance_poly.png │ │ │ ├── grossini_family.plist │ │ │ ├── grossini_family.png │ │ │ ├── grossini_gray.plist │ │ │ ├── grossini_gray.png │ │ │ ├── grossini_polygon.plist │ │ │ ├── grossini_polygon.png │ │ │ ├── tcc_issue_1.plist │ │ │ ├── tcc_issue_1.png │ │ │ ├── tcc_issue_2.plist │ │ │ └── tcc_issue_2.png │ │ ├── audio │ │ │ ├── EntireFramesTest.mp3 │ │ │ ├── LuckyDay.mp3 │ │ │ ├── SmallFile.mp3 │ │ │ ├── SmallFile2.mp3 │ │ │ ├── SmallFile3.mp3 │ │ │ └── SoundEffectsFX009 │ │ │ │ ├── FX081.mp3 │ │ │ │ ├── FX082.mp3 │ │ │ │ ├── FX083.mp3 │ │ │ │ ├── FX084.mp3 │ │ │ │ ├── FX085.mp3 │ │ │ │ ├── FX086.mp3 │ │ │ │ ├── FX087.mp3 │ │ │ │ ├── FX088.mp3 │ │ │ │ ├── FX089.mp3 │ │ │ │ ├── FX090.mp3 │ │ │ │ └── README.txt │ │ ├── background-music-aac.mp3 │ │ ├── background-music-aac.wav │ │ ├── background.caf │ │ ├── background.mp3 │ │ ├── background.ogg │ │ ├── background.wav │ │ ├── cacert.pem │ │ ├── ccb │ │ │ ├── HelloCocosBuilder.ccb │ │ │ ├── HelloCocosBuilder.ccbi │ │ │ ├── animated-grossini.plist │ │ │ ├── animated-grossini.png │ │ │ ├── btn-a-0.png │ │ │ ├── btn-a-1.png │ │ │ ├── btn-a-2.png │ │ │ ├── btn-b-0.png │ │ │ ├── btn-b-1.png │ │ │ ├── btn-b-2.png │ │ │ ├── btn-back-0.png │ │ │ ├── btn-back-1.png │ │ │ ├── btn-test-0.png │ │ │ ├── btn-test-1.png │ │ │ ├── btn-test-2.png │ │ │ ├── burst.png │ │ │ ├── ccb │ │ │ │ ├── TestAnimations.ccb │ │ │ │ ├── TestAnimations.ccbi │ │ │ │ ├── TestAnimationsSub.ccb │ │ │ │ ├── TestAnimationsSub.ccbi │ │ │ │ ├── TestButtons.ccb │ │ │ │ ├── TestButtons.ccbi │ │ │ │ ├── TestHeader.ccb │ │ │ │ ├── TestHeader.ccbi │ │ │ │ ├── TestLabels.ccb │ │ │ │ ├── TestLabels.ccbi │ │ │ │ ├── TestMenus.ccb │ │ │ │ ├── TestMenus.ccbi │ │ │ │ ├── TestParticleSystems.ccb │ │ │ │ ├── TestParticleSystems.ccbi │ │ │ │ ├── TestScrollViews.ccb │ │ │ │ ├── TestScrollViews.ccbi │ │ │ │ ├── TestScrollViewsContentA.ccb │ │ │ │ ├── TestScrollViewsContentA.ccbi │ │ │ │ ├── TestSprites.ccb │ │ │ │ ├── TestSprites.ccbi │ │ │ │ ├── TestTimelineCallback.ccb │ │ │ │ └── TestTimelineCallback.ccbi │ │ │ ├── ccbParticleStars.png │ │ │ ├── comic andy.ttf │ │ │ ├── fileLookup.plist │ │ │ ├── flower.jpg │ │ │ ├── gem-0.wav │ │ │ ├── gem-1.wav │ │ │ ├── grossini-generic.plist │ │ │ ├── grossini-generic.png │ │ │ ├── jungle-left.png │ │ │ ├── jungle-right.png │ │ │ ├── jungle.png │ │ │ ├── logo-icon.png │ │ │ ├── logo.png │ │ │ ├── markerfelt24shadow.fnt │ │ │ ├── markerfelt24shadow.png │ │ │ ├── particle-fire.png │ │ │ ├── particle-smoke.png │ │ │ ├── particle-snow.png │ │ │ ├── particle-stars.png │ │ │ └── scale-9-demo.png │ │ ├── cocosvideo.mp4 │ │ ├── components │ │ │ ├── Player.png │ │ │ ├── Projectile.png │ │ │ └── Target.png │ │ ├── configs │ │ │ ├── CHINESE.lang.csb │ │ │ ├── ENGLISH.lang.csb │ │ │ ├── JAPANESE.lang.csb │ │ │ ├── config-example.plist │ │ │ ├── config-test-invalid.plist │ │ │ ├── config-test-ok.plist │ │ │ ├── en-US.lang.json │ │ │ ├── ja-JP.lang.json │ │ │ └── zh-CN.lang.json │ │ ├── effect1.raw │ │ ├── effect1.wav │ │ ├── effect2.mp3 │ │ ├── effect2.ogg │ │ ├── extensions │ │ │ ├── CCControlColourPickerSpriteSheet.plist │ │ │ ├── CCControlColourPickerSpriteSheet.png │ │ │ ├── background.png │ │ │ ├── button.png │ │ │ ├── buttonBackground.png │ │ │ ├── buttonHighlighted.png │ │ │ ├── green_edit.png │ │ │ ├── orange_edit.png │ │ │ ├── potentiometerButton.png │ │ │ ├── potentiometerProgress.png │ │ │ ├── potentiometerTrack.png │ │ │ ├── ribbon.png │ │ │ ├── sliderProgress.png │ │ │ ├── sliderProgress2.png │ │ │ ├── sliderThumb.png │ │ │ ├── sliderTrack.png │ │ │ ├── sliderTrack2.png │ │ │ ├── stepper-minus.png │ │ │ ├── stepper-plus.png │ │ │ ├── switch-mask.png │ │ │ ├── switch-off.png │ │ │ ├── switch-on.png │ │ │ ├── switch-thumb.png │ │ │ └── yellow_edit.png │ │ ├── fileLookup.plist │ │ ├── fonts │ │ │ ├── A Damn Mess.ttf │ │ │ ├── Abberancy.ttf │ │ │ ├── Abduction.ttf │ │ │ ├── American Typewriter.ttf │ │ │ ├── Courier New.ttf │ │ │ ├── Fingerpop.ttf │ │ │ ├── FingerpopGap.ttf │ │ │ ├── HKYuanMini.ttf │ │ │ ├── Japanese.ttf │ │ │ ├── Marker Felt.ttf │ │ │ ├── NotoEmoji-Regular.ttf │ │ │ ├── Paint Boy.ttf │ │ │ ├── Roboto.bmf.fnt │ │ │ ├── Roboto.bmf_0.png │ │ │ ├── Schwarzwald Regular.ttf │ │ │ ├── Schwarzwald.ttf │ │ │ ├── Schwarzwald_Regular.eot │ │ │ ├── Scissor Cuts.ttf │ │ │ ├── Thonburi.ttf │ │ │ ├── ThonburiBold.ttf │ │ │ ├── arial-26-en-ru.fnt │ │ │ ├── arial-26-en-ru_0.png │ │ │ ├── arial-unicode-26.GlyphProject │ │ │ ├── arial-unicode-26.fnt │ │ │ ├── arial-unicode-26.png │ │ │ ├── arial.ttf │ │ │ ├── arial16.fnt │ │ │ ├── arial16.png │ │ │ ├── bitmapFontChinese.fnt │ │ │ ├── bitmapFontChinese.png │ │ │ ├── bitmapFontTest.fnt │ │ │ ├── bitmapFontTest.png │ │ │ ├── bitmapFontTest2.bmp │ │ │ ├── bitmapFontTest2.fnt │ │ │ ├── bitmapFontTest2.png │ │ │ ├── bitmapFontTest3.fnt │ │ │ ├── bitmapFontTest3.png │ │ │ ├── bitmapFontTest4.fnt │ │ │ ├── bitmapFontTest4.png │ │ │ ├── bitmapFontTest5.fnt │ │ │ ├── bitmapFontTest5.png │ │ │ ├── bmfont-rotated-test.plist │ │ │ ├── bmfont-rotated-test.png │ │ │ ├── boundsTestFont.fnt │ │ │ ├── boundsTestFont.png │ │ │ ├── cyril.ttf │ │ │ ├── cyrillic.ttf │ │ │ ├── emoji.txt │ │ │ ├── enligsh-chinese.fnt │ │ │ ├── enligsh-chinese.png │ │ │ ├── font-issue1343-hd.fnt │ │ │ ├── font-issue1343-hd.png │ │ │ ├── font-issue1343.fnt │ │ │ ├── font-issue1343.png │ │ │ ├── futura-48.fnt │ │ │ ├── futura-48.png │ │ │ ├── geneva-32.fnt │ │ │ ├── geneva-regular-32.fnt │ │ │ ├── helvetica-32.fnt │ │ │ ├── helvetica-geneva-32.png │ │ │ ├── helvetica-regular-32.fnt │ │ │ ├── konqa32-hd.fnt │ │ │ ├── konqa32-hd.png │ │ │ ├── konqa32.fnt │ │ │ ├── konqa32.png │ │ │ ├── labelatlas.png │ │ │ ├── larabie-16-hd.plist │ │ │ ├── larabie-16-hd.png │ │ │ ├── larabie-16.plist │ │ │ ├── larabie-16.png │ │ │ ├── markerFelt-hd.fnt │ │ │ ├── markerFelt-hd.png │ │ │ ├── markerFelt.fnt │ │ │ ├── markerFelt.png │ │ │ ├── tahoma.ttf │ │ │ ├── tuffy_bold_italic-charmap-hd.plist │ │ │ ├── tuffy_bold_italic-charmap-hd.png │ │ │ ├── tuffy_bold_italic-charmap.plist │ │ │ ├── tuffy_bold_italic-charmap.png │ │ │ ├── west_england-64.fnt │ │ │ ├── west_england-64.png │ │ │ └── xingkai-incomplete.ttf │ │ ├── fps_images.png │ │ ├── hd │ │ │ ├── ActionTimeline │ │ │ │ ├── Animation.csb │ │ │ │ ├── Animation.csd │ │ │ │ ├── Default │ │ │ │ │ ├── Button_Disable.png │ │ │ │ │ ├── Sprite.png │ │ │ │ │ └── defaultParticle.plist │ │ │ │ └── testAnimationResource │ │ │ │ │ ├── 01.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── hat.png │ │ │ ├── Images │ │ │ │ ├── CyanSquare.png │ │ │ │ ├── Icon.png │ │ │ │ ├── MagentaSquare.png │ │ │ │ ├── YellowSquare.png │ │ │ │ ├── arrows.png │ │ │ │ ├── arrowsBar.png │ │ │ │ ├── b1.png │ │ │ │ ├── b2.png │ │ │ │ ├── background1.jpg │ │ │ │ ├── background1.png │ │ │ │ ├── background2.jpg │ │ │ │ ├── background2.png │ │ │ │ ├── background3.png │ │ │ │ ├── ball.png │ │ │ │ ├── blocks.png │ │ │ │ ├── blocks9.png │ │ │ │ ├── blocks9c.png │ │ │ │ ├── blocks9cr.png │ │ │ │ ├── blocks9r.png │ │ │ │ ├── blocks9ss.plist │ │ │ │ ├── blocks9ss.png │ │ │ │ ├── bugs │ │ │ │ │ ├── circle.plist │ │ │ │ │ ├── circle.png │ │ │ │ │ ├── picture.png │ │ │ │ │ └── test_issue_1179.png │ │ │ │ ├── close.png │ │ │ │ ├── f1.png │ │ │ │ ├── f2.png │ │ │ │ ├── grossini.png │ │ │ │ ├── grossini_dance_01.png │ │ │ │ ├── grossini_dance_02.png │ │ │ │ ├── grossini_dance_03.png │ │ │ │ ├── grossini_dance_04.png │ │ │ │ ├── grossini_dance_05.png │ │ │ │ ├── grossini_dance_06.png │ │ │ │ ├── grossini_dance_07.png │ │ │ │ ├── grossini_dance_08.png │ │ │ │ ├── grossini_dance_09.png │ │ │ │ ├── grossini_dance_10.png │ │ │ │ ├── grossini_dance_11.png │ │ │ │ ├── grossini_dance_12.png │ │ │ │ ├── grossini_dance_13.png │ │ │ │ ├── grossini_dance_14.png │ │ │ │ ├── grossini_dance_atlas.png │ │ │ │ ├── grossinis_sister1.png │ │ │ │ ├── grossinis_sister2.png │ │ │ │ ├── hole_effect.png │ │ │ │ ├── hole_stencil.png │ │ │ │ ├── only_in_hd.pvr.ccz │ │ │ │ ├── paddle.png │ │ │ │ ├── particles.png │ │ │ │ ├── r1.png │ │ │ │ ├── r2.png │ │ │ │ ├── ui.plist │ │ │ │ └── ui.png │ │ │ ├── TileMaps │ │ │ │ ├── orthogonal-test3.tmx │ │ │ │ ├── orthogonal-test4.tmx │ │ │ │ ├── orthogonal-test6.tmx │ │ │ │ ├── test-object-layer.tmx │ │ │ │ ├── tiles.png │ │ │ │ └── tmw_desert_spacing.png │ │ │ ├── animations │ │ │ │ └── dragon_animation.png │ │ │ ├── components │ │ │ │ ├── Player.png │ │ │ │ ├── Projectile.png │ │ │ │ └── Target.png │ │ │ ├── extensions │ │ │ │ ├── CCControlColourPickerSpriteSheet.plist │ │ │ │ ├── CCControlColourPickerSpriteSheet.png │ │ │ │ ├── background.png │ │ │ │ ├── button.png │ │ │ │ ├── buttonHighlighted.png │ │ │ │ ├── potentiometerButton.png │ │ │ │ ├── potentiometerProgress.png │ │ │ │ ├── potentiometerTrack.png │ │ │ │ ├── ribbon.png │ │ │ │ ├── sliderProgress.png │ │ │ │ ├── sliderProgress2.png │ │ │ │ ├── sliderThumb.png │ │ │ │ ├── sliderTrack.png │ │ │ │ ├── sliderTrack2.png │ │ │ │ ├── stepper-minus.png │ │ │ │ └── stepper-plus.png │ │ │ ├── fonts │ │ │ │ ├── font-issue1343.fnt │ │ │ │ ├── font-issue1343.png │ │ │ │ ├── konqa32.fnt │ │ │ │ ├── konqa32.png │ │ │ │ ├── labelatlas.png │ │ │ │ ├── larabie-16.plist │ │ │ │ ├── larabie-16.png │ │ │ │ ├── markerFelt.fnt │ │ │ │ ├── markerFelt.png │ │ │ │ ├── tuffy_bold_italic-charmap.plist │ │ │ │ └── tuffy_bold_italic-charmap.png │ │ │ └── fps_images.png │ │ ├── music.mid │ │ ├── pew-pew-lei.wav │ │ ├── spine │ │ │ ├── coin-pro.json │ │ │ ├── coin-pro.skel │ │ │ ├── coin.atlas │ │ │ ├── coin.png │ │ │ ├── goblins-pro.json │ │ │ ├── goblins.atlas │ │ │ ├── goblins.png │ │ │ ├── license.txt │ │ │ ├── mix-and-match-pro.skel │ │ │ ├── mix-and-match.atlas │ │ │ ├── mix-and-match.png │ │ │ ├── raptor-pro.json │ │ │ ├── raptor.atlas │ │ │ ├── raptor.png │ │ │ ├── spineboy-ess.json │ │ │ ├── spineboy-pro.json │ │ │ ├── spineboy.atlas │ │ │ ├── spineboy.png │ │ │ ├── sprite.png │ │ │ ├── tank-pro.json │ │ │ ├── tank-pro.skel │ │ │ ├── tank.atlas │ │ │ └── tank.png │ │ ├── strings │ │ │ ├── LabelFNTMultiLineAlignmentUNICODE.xml │ │ │ └── LabelFNTUNICODELanguages.xml │ │ ├── zip │ │ │ ├── 10k-nopass.zip │ │ │ ├── 10k.txt │ │ │ └── 10k.zip │ │ └── zwoptex │ │ │ ├── grossini-generic.plist │ │ │ ├── grossini-generic.png │ │ │ ├── grossini.plist │ │ │ └── grossini.png │ ├── proj.android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ └── main.cpp │ │ │ ├── proguard-rules.pro │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── cpp_tests │ │ │ │ ├── AppActivity.java │ │ │ │ └── JNITest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── proj.ios │ │ ├── Classes │ │ │ ├── RootViewController.h │ │ │ ├── RootViewController.mm │ │ │ ├── testsAppDelegate.h │ │ │ └── testsAppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon-cpp-tests.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-20.png │ │ │ │ ├── Icon-20@2x.png │ │ │ │ ├── Icon-20@3x.png │ │ │ │ ├── Icon-29.png │ │ │ │ ├── Icon-29@2x.png │ │ │ │ ├── Icon-29@3x.png │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-40@2x.png │ │ │ │ ├── Icon-40@3x.png │ │ │ │ ├── Icon-50.png │ │ │ │ ├── Icon-50@2x.png │ │ │ │ ├── Icon-57.png │ │ │ │ ├── Icon-57@2x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-72.png │ │ │ │ ├── Icon-72@2x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ └── Icon-83.5@2x.png │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── LaunchScreenBackground.png │ │ ├── Prefix.pch │ │ ├── exportoptions.plist │ │ └── main.m │ ├── proj.linux │ │ └── main.cpp │ ├── proj.mac │ │ ├── Icon.icns │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.cpp │ └── proj.win32 │ │ ├── build-cfg.json │ │ ├── main.cpp │ │ └── main.h ├── lua-empty-test │ ├── .cocos-project.json │ ├── project │ │ ├── CMakeLists.txt │ │ ├── Classes │ │ │ ├── AppDelegate.cpp │ │ │ ├── AppDelegate.h │ │ │ └── lua_module_register.h │ │ ├── proj.android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── get_environment.sh │ │ │ │ ├── jni │ │ │ │ │ └── main.cpp │ │ │ │ ├── proguard-rules.pro │ │ │ │ ├── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ │ └── strings.xml │ │ │ │ └── src │ │ │ │ │ └── org │ │ │ │ │ └── cocos2dx │ │ │ │ │ └── lua_empty_test │ │ │ │ │ └── AppActivity.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── proj.ios │ │ │ ├── AppController.h │ │ │ ├── AppController.mm │ │ │ ├── HelloLua_Prefix.pch │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon-lua-empty-test.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-20.png │ │ │ │ │ ├── Icon-20@2x.png │ │ │ │ │ ├── Icon-20@3x.png │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ ├── Icon-40.png │ │ │ │ │ ├── Icon-40@2x.png │ │ │ │ │ ├── Icon-40@3x.png │ │ │ │ │ ├── Icon-50.png │ │ │ │ │ ├── Icon-50@2x.png │ │ │ │ │ ├── Icon-57.png │ │ │ │ │ ├── Icon-57@2x.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ └── Icon-83.5@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── LaunchScreenBackground.png │ │ │ ├── RootViewController.h │ │ │ ├── RootViewController.mm │ │ │ ├── exportoptions.plist │ │ │ └── main.m │ │ ├── proj.linux │ │ │ └── main.cpp │ │ ├── proj.mac │ │ │ ├── HelloLua_Prefix.pch │ │ │ ├── Icon.icns │ │ │ ├── Info.plist │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.cpp │ │ └── proj.win32 │ │ │ ├── build-cfg.json │ │ │ ├── main.cpp │ │ │ └── main.h │ ├── res │ │ ├── .gitignore │ │ ├── background.caf │ │ ├── background.mp3 │ │ ├── background.ogg │ │ ├── crop.png │ │ ├── dog.png │ │ ├── effect1.wav │ │ ├── farm.jpg │ │ ├── fonts │ │ │ └── Marker Felt.ttf │ │ ├── land.png │ │ ├── menu1.png │ │ └── menu2.png │ └── src │ │ ├── hello.lua │ │ ├── hello2.lua │ │ └── mobdebug.lua ├── lua-tests │ ├── .cocos-project.json │ ├── project │ │ ├── CMakeLists.txt │ │ ├── Classes │ │ │ ├── AppDelegate.cpp │ │ │ ├── AppDelegate.h │ │ │ ├── lua_assetsmanager_test_sample.cpp │ │ │ ├── lua_assetsmanager_test_sample.h │ │ │ ├── lua_test_bindings.cpp │ │ │ └── lua_test_bindings.h │ │ ├── proj.android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── get_environment.sh │ │ │ │ ├── jni │ │ │ │ │ └── main.cpp │ │ │ │ ├── proguard-rules.pro │ │ │ │ ├── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ │ └── strings.xml │ │ │ │ └── src │ │ │ │ │ ├── com │ │ │ │ │ └── cocos2dx │ │ │ │ │ │ └── sample │ │ │ │ │ │ └── LuaJavaBridgeTest │ │ │ │ │ │ └── LuaJavaBridgeTest.java │ │ │ │ │ └── org │ │ │ │ │ └── cocos2dx │ │ │ │ │ └── lua_tests │ │ │ │ │ └── AppActivity.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── proj.ios_mac │ │ │ ├── ios │ │ │ │ ├── AppController.h │ │ │ │ ├── AppController.mm │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── AppIcon-lua-tests.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-20.png │ │ │ │ │ │ ├── Icon-20@2x.png │ │ │ │ │ │ ├── Icon-20@3x.png │ │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ │ ├── Icon-40.png │ │ │ │ │ │ ├── Icon-40@2x.png │ │ │ │ │ │ ├── Icon-40@3x.png │ │ │ │ │ │ ├── Icon-50.png │ │ │ │ │ │ ├── Icon-50@2x.png │ │ │ │ │ │ ├── Icon-57.png │ │ │ │ │ │ ├── Icon-57@2x.png │ │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ │ └── Icon-83.5@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ ├── LaunchScreenBackground.png │ │ │ │ ├── LuaObjectCBridgeTest.h │ │ │ │ ├── LuaObjectCBridgeTest.mm │ │ │ │ ├── RootViewController.h │ │ │ │ ├── RootViewController.mm │ │ │ │ ├── exportoptions.plist │ │ │ │ └── main.m │ │ │ └── mac │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info.plist │ │ │ │ ├── LuaObjectCBridgeTest.h │ │ │ │ ├── LuaObjectCBridgeTest.mm │ │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ └── main.cpp │ │ ├── proj.linux │ │ │ └── main.cpp │ │ └── proj.win32 │ │ │ ├── build-cfg.json │ │ │ ├── lua-tests.rc │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ ├── res │ │ │ └── lua-tests.ico │ │ │ └── resource.h │ ├── res │ │ └── cocosbuilderRes │ │ │ ├── CocosBuilderExample.ccbproj │ │ │ ├── ccb │ │ │ ├── HelloCocosBuilder.ccb │ │ │ ├── HelloCocosBuilder.ccbi │ │ │ ├── animated-grossini.plist │ │ │ ├── animated-grossini.png │ │ │ ├── btn-a-0.png │ │ │ ├── btn-a-1.png │ │ │ ├── btn-a-2.png │ │ │ ├── btn-b-0.png │ │ │ ├── btn-b-1.png │ │ │ ├── btn-b-2.png │ │ │ ├── btn-back-0.png │ │ │ ├── btn-back-1.png │ │ │ ├── btn-test-0.png │ │ │ ├── btn-test-1.png │ │ │ ├── btn-test-2.png │ │ │ ├── burst.png │ │ │ ├── ccb │ │ │ │ ├── TestAnimations.ccb │ │ │ │ ├── TestAnimations.ccbi │ │ │ │ ├── TestAnimationsSub.ccb │ │ │ │ ├── TestAnimationsSub.ccbi │ │ │ │ ├── TestButtons.ccb │ │ │ │ ├── TestButtons.ccbi │ │ │ │ ├── TestHeader.ccb │ │ │ │ ├── TestHeader.ccbi │ │ │ │ ├── TestLabels.ccb │ │ │ │ ├── TestLabels.ccbi │ │ │ │ ├── TestMenus.ccb │ │ │ │ ├── TestMenus.ccbi │ │ │ │ ├── TestParticleSystems.ccb │ │ │ │ ├── TestParticleSystems.ccbi │ │ │ │ ├── TestScrollViews.ccb │ │ │ │ ├── TestScrollViews.ccbi │ │ │ │ ├── TestScrollViewsContentA.ccb │ │ │ │ ├── TestScrollViewsContentA.ccbi │ │ │ │ ├── TestSprites.ccb │ │ │ │ ├── TestSprites.ccbi │ │ │ │ ├── TestTimelineCallback.ccb │ │ │ │ └── TestTimelineCallback.ccbi │ │ │ ├── ccbParticleStars.png │ │ │ ├── comic andy.ttf │ │ │ ├── fileLookup.plist │ │ │ ├── flower.jpg │ │ │ ├── gem-0.wav │ │ │ ├── gem-1.wav │ │ │ ├── grossini-generic.plist │ │ │ ├── grossini-generic.png │ │ │ ├── jungle-left.png │ │ │ ├── jungle-right.png │ │ │ ├── jungle.png │ │ │ ├── logo-icon.png │ │ │ ├── logo.png │ │ │ ├── markerfelt24shadow.fnt │ │ │ ├── markerfelt24shadow.png │ │ │ ├── particle-fire.png │ │ │ ├── particle-smoke.png │ │ │ ├── particle-snow.png │ │ │ ├── particle-stars.png │ │ │ └── scale-9-demo.png │ │ │ └── fileLookup.plist │ └── src │ │ ├── AccelerometerTest │ │ └── AccelerometerTest.lua │ │ ├── ActionManagerTest │ │ └── ActionManagerTest.lua │ │ ├── ActionsEaseTest │ │ └── ActionsEaseTest.lua │ │ ├── ActionsProgressTest │ │ └── ActionsProgressTest.lua │ │ ├── ActionsTest │ │ └── ActionsTest.lua │ │ ├── AssetsManagerExTest │ │ └── AssetsManagerExTest.lua │ │ ├── AssetsManagerTest │ │ ├── AssetsManagerModule.lua │ │ └── AssetsManagerTest.lua │ │ ├── BillBoardTest │ │ └── BillBoardTest.lua │ │ ├── BugsTest │ │ └── BugsTest.lua │ │ ├── Camera3DTest │ │ └── Camera3DTest.lua │ │ ├── CaptureScreenTest │ │ └── CaptureScreenTest.lua │ │ ├── ClickAndMoveTest │ │ └── ClickAndMoveTest.lua │ │ ├── ComponentTest │ │ ├── enemy.lua │ │ ├── gameoverscene.lua │ │ ├── main.lua │ │ ├── player.lua │ │ ├── projectile.lua │ │ └── scene.lua │ │ ├── CurrentLanguageTest │ │ └── CurrentLanguageTest.lua │ │ ├── DownloaderTest │ │ └── DownloaderTest.lua │ │ ├── DrawPrimitivesTest │ │ └── DrawPrimitivesTest.lua │ │ ├── EffectsAdvancedTest │ │ └── EffectsAdvancedTest.lua │ │ ├── EffectsTest │ │ ├── EffectsName.lua │ │ └── EffectsTest.lua │ │ ├── ExtensionTest │ │ ├── ExtensionTest.lua │ │ └── WebProxyTest.lua │ │ ├── FastTiledMapTest │ │ └── FastTiledMapTest.lua │ │ ├── FileUtilsTest │ │ └── FileUtilsTest.lua │ │ ├── FontTest │ │ └── FontTest.lua │ │ ├── IntervalTest │ │ └── IntervalTest.lua │ │ ├── KeypadTest │ │ └── KeypadTest.lua │ │ ├── LabelTestNew │ │ └── LabelTestNew.lua │ │ ├── LayerTest │ │ └── LayerTest.lua │ │ ├── LightTest │ │ └── LightTest.lua │ │ ├── LuaBridgeTest │ │ └── LuaBridgeTest.lua │ │ ├── LuaLoaderTest │ │ ├── LuaLoaderTest.lua │ │ ├── in_dir │ │ │ └── init.lua │ │ ├── simple.lua │ │ └── strange_ext.lc │ │ ├── MaterialSystemTest │ │ └── MaterialSystemTest.lua │ │ ├── MenuTest │ │ └── MenuTest.lua │ │ ├── MotionStreakTest │ │ └── MotionStreakTest.lua │ │ ├── NavMeshTest │ │ └── NavMeshTest.lua │ │ ├── NewAudioEngineTest │ │ └── NewAudioEngineTest.lua │ │ ├── NewEventDispatcherTest │ │ └── NewEventDispatcherTest.lua │ │ ├── NodeTest │ │ └── NodeTest.lua │ │ ├── OpenGLTest │ │ └── OpenGLTest.lua │ │ ├── ParallaxTest │ │ └── ParallaxTest.lua │ │ ├── Particle3DTest │ │ └── Particle3DTest.lua │ │ ├── ParticleTest │ │ └── ParticleTest.lua │ │ ├── Physics3DTest │ │ └── Physics3DTest.lua │ │ ├── PhysicsTest │ │ └── PhysicsTest.lua │ │ ├── RenderTextureTest │ │ └── RenderTextureTest.lua │ │ ├── RotateWorldTest │ │ └── RotateWorldTest.lua │ │ ├── Scene3DTest │ │ └── Scene3DTest.lua │ │ ├── SceneTest │ │ └── SceneTest.lua │ │ ├── SpineTest │ │ └── SpineTest.lua │ │ ├── Sprite3DTest │ │ └── Sprite3DTest.lua │ │ ├── SpritePolygonTest │ │ └── SpritePolygonTest.lua │ │ ├── SpriteTest │ │ └── SpriteTest.lua │ │ ├── TerrainTest │ │ └── TerrainTest.lua │ │ ├── TextInputTest │ │ └── TextInputTest.lua │ │ ├── Texture2dTest │ │ └── Texture2dTest.lua │ │ ├── TileMapTest │ │ └── TileMapTest.lua │ │ ├── TouchesTest │ │ ├── Ball.lua │ │ ├── Paddle.lua │ │ └── TouchesTest.lua │ │ ├── TransitionsTest │ │ ├── TransitionsName.lua │ │ └── TransitionsTest.lua │ │ ├── UserDefaultTest │ │ └── UserDefaultTest.lua │ │ ├── VibrateTest │ │ └── VibrateTest.lua │ │ ├── VideoPlayerTest │ │ └── VideoPlayerTest.lua │ │ ├── VisibleRect.lua │ │ ├── WebViewTest │ │ └── WebViewTest.lua │ │ ├── XMLHttpRequestTest │ │ └── XMLHttpRequestTest.lua │ │ ├── ZwoptexTest │ │ └── ZwoptexTest.lua │ │ ├── controller.lua │ │ ├── helper.lua │ │ ├── mainMenu.lua │ │ └── testResource.lua └── performance-tests │ ├── .cocos-project.json │ ├── Classes │ ├── AppDelegate.cpp │ ├── AppDelegate.h │ ├── Profile.cpp │ ├── Profile.h │ └── tests │ │ ├── BaseTest.cpp │ │ ├── BaseTest.h │ │ ├── PerformanceAllocTest.cpp │ │ ├── PerformanceAllocTest.h │ │ ├── PerformanceCallbackTest.cpp │ │ ├── PerformanceCallbackTest.h │ │ ├── PerformanceContainerTest.cpp │ │ ├── PerformanceContainerTest.h │ │ ├── PerformanceEventDispatcherTest.cpp │ │ ├── PerformanceEventDispatcherTest.h │ │ ├── PerformanceLabelTest.cpp │ │ ├── PerformanceLabelTest.h │ │ ├── PerformanceMathTest.cpp │ │ ├── PerformanceMathTest.h │ │ ├── PerformanceNodeChildrenTest.cpp │ │ ├── PerformanceNodeChildrenTest.h │ │ ├── PerformanceParticle3DTest.cpp │ │ ├── PerformanceParticle3DTest.h │ │ ├── PerformanceParticleTest.cpp │ │ ├── PerformanceParticleTest.h │ │ ├── PerformanceScenarioTest.cpp │ │ ├── PerformanceScenarioTest.h │ │ ├── PerformanceSpriteTest.cpp │ │ ├── PerformanceSpriteTest.h │ │ ├── PerformanceTextureTest.cpp │ │ ├── PerformanceTextureTest.h │ │ ├── VisibleRect.cpp │ │ ├── VisibleRect.h │ │ ├── controller.cpp │ │ ├── controller.h │ │ ├── testBasic.h │ │ ├── testResource.h │ │ └── tests.h │ ├── Resources │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── Images │ │ ├── PlanetCute-1024x1024.png │ │ ├── b1.png │ │ ├── b2.png │ │ ├── close.png │ │ ├── f1.png │ │ ├── f2.png │ │ ├── fire.png │ │ ├── grossini.png │ │ ├── grossini_dance_01.png │ │ ├── grossini_dance_02.png │ │ ├── grossini_dance_03.png │ │ ├── grossini_dance_04.png │ │ ├── grossini_dance_05.png │ │ ├── grossini_dance_06.png │ │ ├── grossini_dance_07.png │ │ ├── grossini_dance_08.png │ │ ├── grossini_dance_09.png │ │ ├── grossini_dance_10.png │ │ ├── grossini_dance_11.png │ │ ├── grossini_dance_12.png │ │ ├── grossini_dance_13.png │ │ ├── grossini_dance_14.png │ │ ├── grossini_dance_atlas.png │ │ ├── grossini_polygon.plist │ │ ├── grossini_polygon.png │ │ ├── grossini_quad.plist │ │ ├── grossini_quad.png │ │ ├── grossinis_sister1.png │ │ ├── grossinis_sister1_sp.plist │ │ ├── grossinis_sister1_sp.png │ │ ├── grossinis_sister2.png │ │ ├── grossinis_sister2_sp.plist │ │ ├── grossinis_sister2_sp.png │ │ ├── landscape-1024x1024.png │ │ ├── r1.png │ │ ├── r2.png │ │ ├── sprites_test │ │ │ ├── sprite-0-0.png │ │ │ ├── sprite-0-1.png │ │ │ ├── sprite-0-2.png │ │ │ ├── sprite-0-3.png │ │ │ ├── sprite-0-4.png │ │ │ ├── sprite-0-5.png │ │ │ ├── sprite-0-6.png │ │ │ ├── sprite-0-7.png │ │ │ ├── sprite-1-0.png │ │ │ ├── sprite-1-1.png │ │ │ ├── sprite-1-2.png │ │ │ ├── sprite-1-3.png │ │ │ ├── sprite-1-4.png │ │ │ ├── sprite-1-5.png │ │ │ ├── sprite-1-6.png │ │ │ ├── sprite-1-7.png │ │ │ ├── sprite-2-0.png │ │ │ ├── sprite-2-1.png │ │ │ ├── sprite-2-2.png │ │ │ ├── sprite-2-3.png │ │ │ ├── sprite-2-4.png │ │ │ ├── sprite-2-5.png │ │ │ ├── sprite-2-6.png │ │ │ ├── sprite-2-7.png │ │ │ ├── sprite-3-0.png │ │ │ ├── sprite-3-1.png │ │ │ ├── sprite-3-2.png │ │ │ ├── sprite-3-3.png │ │ │ ├── sprite-3-4.png │ │ │ ├── sprite-3-5.png │ │ │ ├── sprite-3-6.png │ │ │ ├── sprite-3-7.png │ │ │ ├── sprite-4-0.png │ │ │ ├── sprite-4-1.png │ │ │ ├── sprite-4-2.png │ │ │ ├── sprite-4-3.png │ │ │ ├── sprite-4-4.png │ │ │ ├── sprite-4-5.png │ │ │ ├── sprite-4-6.png │ │ │ ├── sprite-4-7.png │ │ │ ├── sprite-5-0.png │ │ │ ├── sprite-5-1.png │ │ │ ├── sprite-5-2.png │ │ │ ├── sprite-5-3.png │ │ │ ├── sprite-5-4.png │ │ │ ├── sprite-5-5.png │ │ │ ├── sprite-5-6.png │ │ │ ├── sprite-5-7.png │ │ │ ├── sprite-6-0.png │ │ │ ├── sprite-6-1.png │ │ │ ├── sprite-6-2.png │ │ │ ├── sprite-6-3.png │ │ │ ├── sprite-6-4.png │ │ │ ├── sprite-6-5.png │ │ │ ├── sprite-6-6.png │ │ │ ├── sprite-6-7.png │ │ │ ├── sprite-7-0.png │ │ │ ├── sprite-7-1.png │ │ │ ├── sprite-7-2.png │ │ │ ├── sprite-7-3.png │ │ │ ├── sprite-7-4.png │ │ │ ├── sprite-7-5.png │ │ │ ├── sprite-7-6.png │ │ │ └── sprite-7-7.png │ │ ├── spritesheet1.png │ │ ├── test_image.png │ │ ├── texture1024x1024.png │ │ └── texture512x512.png │ ├── Particle3D │ │ ├── materials │ │ │ ├── pu_example.material │ │ │ └── pu_mediapack_01.material │ │ ├── scripts │ │ │ ├── UVAnimation.pu │ │ │ ├── advancedLodSystem.pu │ │ │ ├── blackHole.pu │ │ │ ├── canOfWorms.pu │ │ │ ├── electricBeamSystem.pu │ │ │ ├── example_004.pu │ │ │ ├── explosionSystem.pu │ │ │ ├── flameSystem.pu │ │ │ ├── flareShield.pu │ │ │ ├── hypno.pu │ │ │ ├── lightningBolt.pu │ │ │ ├── lineStreak.pu │ │ │ ├── mp_hit_04.pu │ │ │ ├── mp_torch.pu │ │ │ ├── ribbonTrailTest.pu │ │ │ ├── timeShift.pu │ │ │ └── weaponTrail.pu │ │ └── textures │ │ │ ├── crate6.png │ │ │ ├── interpolate.png │ │ │ ├── mp_explosion_04.dds │ │ │ ├── mp_explosion_debris.dds │ │ │ ├── mp_explosion_smoke_01.dds │ │ │ ├── mp_fire_02_2x2.dds │ │ │ ├── mp_fire_02_2x2.png │ │ │ ├── pu_barrel_01.png │ │ │ ├── pu_barrel_02.png │ │ │ ├── pu_bbal.png │ │ │ ├── pu_beam_01.png │ │ │ ├── pu_beam_02.png │ │ │ ├── pu_circle.png │ │ │ ├── pu_dirt_256x512.png │ │ │ ├── pu_dot_03_64x64.png │ │ │ ├── pu_fire_01_64x64.png │ │ │ ├── pu_flame.png │ │ │ ├── pu_flare.png │ │ │ ├── pu_flare_12_256x256.png │ │ │ ├── pu_green_ball.png │ │ │ ├── pu_hart.png │ │ │ ├── pu_lightning_20x64.png │ │ │ ├── pu_nucleus.png │ │ │ ├── pu_plate.jpg │ │ │ ├── pu_rain.png │ │ │ ├── pu_rain_01.png │ │ │ ├── pu_ribbontrail.png │ │ │ ├── pu_sand_336x330.png │ │ │ ├── pu_smoke_02_128x128.png │ │ │ ├── pu_smoke_brown_336x330.png │ │ │ ├── pu_stone.jpeg │ │ │ ├── pump_atlas_smoke.png │ │ │ ├── pump_biohazzard.png │ │ │ ├── pump_bubble.png │ │ │ ├── pump_bubble_blurred.png │ │ │ ├── pump_celticknot.png │ │ │ ├── pump_dirt_01.png │ │ │ ├── pump_dirt_02.png │ │ │ ├── pump_flame_01.png │ │ │ ├── pump_flame_02.png │ │ │ ├── pump_flame_03.png │ │ │ ├── pump_flame_04.png │ │ │ ├── pump_flare_01.png │ │ │ ├── pump_flare_02.png │ │ │ ├── pump_flare_03.png │ │ │ ├── pump_flare_04.png │ │ │ ├── pump_flare_05.png │ │ │ ├── pump_flare_06.png │ │ │ ├── pump_genesis_01.png │ │ │ ├── pump_genesis_02.png │ │ │ ├── pump_hourglass.png │ │ │ ├── pump_leave.png │ │ │ ├── pump_lightning_01.png │ │ │ ├── pump_lightning_02.png │ │ │ ├── pump_lightning_03.png │ │ │ ├── pump_lightning_04.png │ │ │ ├── pump_mcdxiiiv.png │ │ │ ├── pump_metal_01.png │ │ │ ├── pump_metal_02.png │ │ │ ├── pump_mmviii.png │ │ │ ├── pump_pentagram_01.png │ │ │ ├── pump_pentagram_02.png │ │ │ ├── pump_ring_01.png │ │ │ ├── pump_ring_02.png │ │ │ ├── pump_ring_03.png │ │ │ ├── pump_ring_04.png │ │ │ ├── pump_ring_05.png │ │ │ ├── pump_smoke_01.png │ │ │ ├── pump_smoke_02.png │ │ │ ├── pump_smoke_03.png │ │ │ ├── pump_smoke_04.png │ │ │ ├── pump_smoke_05.png │ │ │ ├── pump_smoke_06.png │ │ │ ├── pump_smoke_07.png │ │ │ ├── pump_snow_01.png │ │ │ ├── pump_spark_01.png │ │ │ ├── pump_star_01.png │ │ │ ├── pump_star_02.png │ │ │ ├── pump_star_03.png │ │ │ ├── pump_star_04.png │ │ │ ├── pump_star_05.png │ │ │ ├── pump_streak_01.png │ │ │ ├── pump_streak_02.png │ │ │ ├── pump_streak_03.png │ │ │ ├── pump_streak_04.png │ │ │ ├── pump_swirl_01.png │ │ │ ├── pump_swirl_02.png │ │ │ ├── pump_swirl_03.png │ │ │ ├── pump_watch.png │ │ │ └── weaponTrail.png │ ├── Particles │ │ ├── BoilingFoam.plist │ │ ├── Comet.plist │ │ ├── Flower.plist │ │ ├── Galaxy.plist │ │ ├── LavaFlow.plist │ │ ├── Phoenix.plist │ │ ├── SmallSun.plist │ │ ├── SpinningPeas.plist │ │ ├── debian.plist │ │ └── lines.plist │ ├── TileMaps │ │ ├── iso-test.png │ │ ├── iso-test.tmx │ │ ├── iso-test2.png │ │ └── iso-test2.tmx │ ├── fonts │ │ ├── Marker Felt.ttf │ │ ├── arial.ttf │ │ ├── bitmapFontTest3.fnt │ │ ├── bitmapFontTest3.png │ │ └── tahoma.ttf │ └── fps_images.png │ ├── proj.android │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── jni │ │ │ └── hellocpp │ │ │ │ └── main.cpp │ │ ├── proguard-rules.pro │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── cpp │ │ │ └── AppActivity.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ ├── proj.ios │ ├── AppController.h │ ├── AppController.mm │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-100.png │ ├── Icon-114.png │ ├── Icon-120.png │ ├── Icon-144.png │ ├── Icon-152.png │ ├── Icon-29.png │ ├── Icon-40.png │ ├── Icon-50.png │ ├── Icon-57.png │ ├── Icon-58.png │ ├── Icon-72.png │ ├── Icon-76.png │ ├── Icon-80.png │ ├── Info.plist │ ├── Prefix.pch │ ├── RootViewController.h │ ├── RootViewController.mm │ ├── exportoptions.plist │ └── main.m │ ├── proj.mac │ ├── Icon.icns │ ├── Info.plist │ ├── Prefix.pch │ └── main.cpp │ └── proj.win32 │ ├── build-cfg.json │ ├── game.rc │ ├── main.cpp │ ├── main.h │ ├── res │ └── game.ico │ └── resource.h └── tools ├── appveyor-scripts ├── before-build.ps1 ├── build.ps1 ├── git_retry.py └── setup_android.py ├── coding-style ├── include-linter.py └── tailing-spaces.py ├── jenkins-scripts ├── configs │ ├── autotest.py │ ├── cocos-2dx-develop-android.py │ ├── cocos-2dx-develop-base-repo.py │ ├── cocos-2dx-develop-ios.py │ ├── cocos-2dx-develop-win32.py │ ├── cocos-2dx-doxygen.py │ ├── cocos-2dx-pull-request-build-comment-trigger.py │ ├── cocos-2dx-pull-request-build-trigger.py │ ├── cocos-2dx-pull-request-build.py │ ├── cocos2d-console-test.py │ ├── cocostudiox-base-repo.py │ ├── cocostudiox-daily-build.py │ ├── jenkins-job-watchdog.py │ └── manual-update-jenkins-scripts.py ├── daily-build.py ├── do-pull-request-builder.py ├── master-scripts │ ├── autotest.py │ ├── ci-dailybuild-android.py │ ├── ci-release-test.py │ ├── cocos-console-test.py │ ├── cocos2dx-libsize-tracking.py │ ├── emptytest-post-build.py │ ├── emptytest.py │ ├── github-pr-watchdog.py │ ├── job-comment-trigger.py │ ├── job-trigger.py │ ├── post-build.py │ └── watchdog.py ├── pull-request-builder.py ├── slave-scripts │ ├── framework │ │ ├── android-build.sh │ │ ├── mac-build.sh │ │ └── win32-build.bat │ ├── gen_jsb.py │ ├── runtime │ │ ├── android-build.sh │ │ ├── ios-build.sh │ │ ├── linux-build.sh │ │ ├── mac-build.sh │ │ ├── win32-cpp.bat │ │ ├── win32-js.bat │ │ ├── win32-lua.bat │ │ ├── windows-universal-cpp.bat │ │ ├── windows-universal-js.bat │ │ └── windows-universal-lua.bat │ ├── templates │ │ ├── android-build.sh │ │ ├── ios-build.sh │ │ ├── linux-build.sh │ │ ├── mac-build.sh │ │ ├── win32-cpp.bat │ │ ├── win32-js.bat │ │ ├── win32-lua.bat │ │ ├── windows-universal-cpp.bat │ │ ├── windows-universal-js.bat │ │ └── windows-universal-lua.bat │ └── tests │ │ ├── android-build.sh │ │ ├── ios-build.sh │ │ ├── linux-build.sh │ │ ├── mac-build.sh │ │ ├── tizen-build.sh │ │ ├── win32-build.bat │ │ └── windows-universal.bat └── utils │ ├── create-job.py │ ├── create-template-project.py │ ├── reboot.py │ └── upload_apk.sh ├── make-package ├── Makefile ├── README.markdown ├── config.json └── git-archive-all ├── missing-tools.txt ├── particle └── convert_YCoordFlipped.py ├── performance-analyze ├── README.md └── convertor.py ├── release └── generate_docs.sh ├── tolua ├── README.mdown ├── cocos2dx.ini ├── cocos2dx_3d.ini ├── cocos2dx_audioengine.ini ├── cocos2dx_backend.ini ├── cocos2dx_controller.ini ├── cocos2dx_csloader.ini ├── cocos2dx_extension.ini ├── cocos2dx_navmesh.ini ├── cocos2dx_physics.ini ├── cocos2dx_physics3d.ini ├── cocos2dx_spine.ini ├── cocos2dx_studio.ini ├── cocos2dx_ui.ini ├── cocos2dx_video.ini ├── cocos2dx_webview.ini └── genbindings.py └── travis-scripts ├── before-install.sh ├── config.gitignore ├── for-each-file-in-dir.sh ├── generate-template-files.py └── run-script.sh /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Modules/CocosBuildHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/CocosBuildHelpers.cmake -------------------------------------------------------------------------------- /cmake/Modules/CocosBuildSet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/CocosBuildSet.cmake -------------------------------------------------------------------------------- /cmake/Modules/CocosConfigDefine.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/CocosConfigDefine.cmake -------------------------------------------------------------------------------- /cmake/Modules/CocosConfigDepend.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/CocosConfigDepend.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindChipmunk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindChipmunk.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindFMOD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindFMOD.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindFontconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindFontconfig.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindGLFW3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindGLFW3.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindGTK3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindGTK3.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindMINIZIP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindMINIZIP.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindMPG123.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindMPG123.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindOgg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindOgg.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindRecast.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindRecast.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSQLite3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindSQLite3.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindTinyXML2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindTinyXML2.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindVorbis.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindWEBSOCKETS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindWEBSOCKETS.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindWebP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/FindWebP.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findflatbuffers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/Findflatbuffers.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findxxhash.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/Modules/Findxxhash.cmake -------------------------------------------------------------------------------- /cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/README.md -------------------------------------------------------------------------------- /cmake/images/Xcode_Find_Setting_Name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/images/Xcode_Find_Setting_Name.png -------------------------------------------------------------------------------- /cmake/images/Xcode_General_Page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/images/Xcode_General_Page.png -------------------------------------------------------------------------------- /cmake/scripts/sync_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cmake/scripts/sync_folder.py -------------------------------------------------------------------------------- /cocos/2d/CCAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCAction.cpp -------------------------------------------------------------------------------- /cocos/2d/CCAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCAction.h -------------------------------------------------------------------------------- /cocos/2d/CCActionCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionCamera.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionCamera.h -------------------------------------------------------------------------------- /cocos/2d/CCActionCatmullRom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionCatmullRom.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionCatmullRom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionCatmullRom.h -------------------------------------------------------------------------------- /cocos/2d/CCActionEase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionEase.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionEase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionEase.h -------------------------------------------------------------------------------- /cocos/2d/CCActionGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionGrid.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionGrid.h -------------------------------------------------------------------------------- /cocos/2d/CCActionGrid3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionGrid3D.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionGrid3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionGrid3D.h -------------------------------------------------------------------------------- /cocos/2d/CCActionInstant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionInstant.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionInstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionInstant.h -------------------------------------------------------------------------------- /cocos/2d/CCActionInterval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionInterval.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionInterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionInterval.h -------------------------------------------------------------------------------- /cocos/2d/CCActionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionManager.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionManager.h -------------------------------------------------------------------------------- /cocos/2d/CCActionPageTurn3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionPageTurn3D.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionPageTurn3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionPageTurn3D.h -------------------------------------------------------------------------------- /cocos/2d/CCActionProgressTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionProgressTimer.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionProgressTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionProgressTimer.h -------------------------------------------------------------------------------- /cocos/2d/CCActionTiledGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionTiledGrid.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionTiledGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionTiledGrid.h -------------------------------------------------------------------------------- /cocos/2d/CCActionTween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionTween.cpp -------------------------------------------------------------------------------- /cocos/2d/CCActionTween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCActionTween.h -------------------------------------------------------------------------------- /cocos/2d/CCAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCAnimation.cpp -------------------------------------------------------------------------------- /cocos/2d/CCAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCAnimation.h -------------------------------------------------------------------------------- /cocos/2d/CCAnimationCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCAnimationCache.cpp -------------------------------------------------------------------------------- /cocos/2d/CCAnimationCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCAnimationCache.h -------------------------------------------------------------------------------- /cocos/2d/CCAtlasNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCAtlasNode.cpp -------------------------------------------------------------------------------- /cocos/2d/CCAtlasNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCAtlasNode.h -------------------------------------------------------------------------------- /cocos/2d/CCAutoPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCAutoPolygon.cpp -------------------------------------------------------------------------------- /cocos/2d/CCAutoPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCAutoPolygon.h -------------------------------------------------------------------------------- /cocos/2d/CCCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCCamera.cpp -------------------------------------------------------------------------------- /cocos/2d/CCCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCCamera.h -------------------------------------------------------------------------------- /cocos/2d/CCCameraBackgroundBrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCCameraBackgroundBrush.cpp -------------------------------------------------------------------------------- /cocos/2d/CCCameraBackgroundBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCCameraBackgroundBrush.h -------------------------------------------------------------------------------- /cocos/2d/CCClippingNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCClippingNode.cpp -------------------------------------------------------------------------------- /cocos/2d/CCClippingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCClippingNode.h -------------------------------------------------------------------------------- /cocos/2d/CCClippingRectangleNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCClippingRectangleNode.cpp -------------------------------------------------------------------------------- /cocos/2d/CCClippingRectangleNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCClippingRectangleNode.h -------------------------------------------------------------------------------- /cocos/2d/CCComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCComponent.cpp -------------------------------------------------------------------------------- /cocos/2d/CCComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCComponent.h -------------------------------------------------------------------------------- /cocos/2d/CCComponentContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCComponentContainer.cpp -------------------------------------------------------------------------------- /cocos/2d/CCComponentContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCComponentContainer.h -------------------------------------------------------------------------------- /cocos/2d/CCDrawNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCDrawNode.cpp -------------------------------------------------------------------------------- /cocos/2d/CCDrawNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCDrawNode.h -------------------------------------------------------------------------------- /cocos/2d/CCFastTMXLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFastTMXLayer.cpp -------------------------------------------------------------------------------- /cocos/2d/CCFastTMXLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFastTMXLayer.h -------------------------------------------------------------------------------- /cocos/2d/CCFastTMXTiledMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFastTMXTiledMap.cpp -------------------------------------------------------------------------------- /cocos/2d/CCFastTMXTiledMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFastTMXTiledMap.h -------------------------------------------------------------------------------- /cocos/2d/CCFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFont.cpp -------------------------------------------------------------------------------- /cocos/2d/CCFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFont.h -------------------------------------------------------------------------------- /cocos/2d/CCFontAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFontAtlas.cpp -------------------------------------------------------------------------------- /cocos/2d/CCFontAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFontAtlas.h -------------------------------------------------------------------------------- /cocos/2d/CCFontAtlasCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFontAtlasCache.cpp -------------------------------------------------------------------------------- /cocos/2d/CCFontAtlasCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFontAtlasCache.h -------------------------------------------------------------------------------- /cocos/2d/CCFontCharMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFontCharMap.cpp -------------------------------------------------------------------------------- /cocos/2d/CCFontCharMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFontCharMap.h -------------------------------------------------------------------------------- /cocos/2d/CCFontFNT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFontFNT.cpp -------------------------------------------------------------------------------- /cocos/2d/CCFontFNT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFontFNT.h -------------------------------------------------------------------------------- /cocos/2d/CCFontFreeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFontFreeType.cpp -------------------------------------------------------------------------------- /cocos/2d/CCFontFreeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCFontFreeType.h -------------------------------------------------------------------------------- /cocos/2d/CCGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCGrid.cpp -------------------------------------------------------------------------------- /cocos/2d/CCGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCGrid.h -------------------------------------------------------------------------------- /cocos/2d/CCLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCLabel.cpp -------------------------------------------------------------------------------- /cocos/2d/CCLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCLabel.h -------------------------------------------------------------------------------- /cocos/2d/CCLabelAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCLabelAtlas.cpp -------------------------------------------------------------------------------- /cocos/2d/CCLabelAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCLabelAtlas.h -------------------------------------------------------------------------------- /cocos/2d/CCLabelTextFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCLabelTextFormatter.cpp -------------------------------------------------------------------------------- /cocos/2d/CCLabelTextFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCLabelTextFormatter.h -------------------------------------------------------------------------------- /cocos/2d/CCLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCLayer.cpp -------------------------------------------------------------------------------- /cocos/2d/CCLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCLayer.h -------------------------------------------------------------------------------- /cocos/2d/CCLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCLight.cpp -------------------------------------------------------------------------------- /cocos/2d/CCLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCLight.h -------------------------------------------------------------------------------- /cocos/2d/CCMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCMenu.cpp -------------------------------------------------------------------------------- /cocos/2d/CCMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCMenu.h -------------------------------------------------------------------------------- /cocos/2d/CCMenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCMenuItem.cpp -------------------------------------------------------------------------------- /cocos/2d/CCMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCMenuItem.h -------------------------------------------------------------------------------- /cocos/2d/CCMotionStreak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCMotionStreak.cpp -------------------------------------------------------------------------------- /cocos/2d/CCMotionStreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCMotionStreak.h -------------------------------------------------------------------------------- /cocos/2d/CCNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCNode.cpp -------------------------------------------------------------------------------- /cocos/2d/CCNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCNode.h -------------------------------------------------------------------------------- /cocos/2d/CCNodeGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCNodeGrid.cpp -------------------------------------------------------------------------------- /cocos/2d/CCNodeGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCNodeGrid.h -------------------------------------------------------------------------------- /cocos/2d/CCParallaxNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCParallaxNode.cpp -------------------------------------------------------------------------------- /cocos/2d/CCParallaxNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCParallaxNode.h -------------------------------------------------------------------------------- /cocos/2d/CCParticleBatchNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCParticleBatchNode.cpp -------------------------------------------------------------------------------- /cocos/2d/CCParticleBatchNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCParticleBatchNode.h -------------------------------------------------------------------------------- /cocos/2d/CCParticleExamples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCParticleExamples.cpp -------------------------------------------------------------------------------- /cocos/2d/CCParticleExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCParticleExamples.h -------------------------------------------------------------------------------- /cocos/2d/CCParticleSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCParticleSystem.cpp -------------------------------------------------------------------------------- /cocos/2d/CCParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCParticleSystem.h -------------------------------------------------------------------------------- /cocos/2d/CCParticleSystemQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCParticleSystemQuad.cpp -------------------------------------------------------------------------------- /cocos/2d/CCParticleSystemQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCParticleSystemQuad.h -------------------------------------------------------------------------------- /cocos/2d/CCProgressTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCProgressTimer.cpp -------------------------------------------------------------------------------- /cocos/2d/CCProgressTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCProgressTimer.h -------------------------------------------------------------------------------- /cocos/2d/CCProtectedNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCProtectedNode.cpp -------------------------------------------------------------------------------- /cocos/2d/CCProtectedNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCProtectedNode.h -------------------------------------------------------------------------------- /cocos/2d/CCRenderTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCRenderTexture.cpp -------------------------------------------------------------------------------- /cocos/2d/CCRenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCRenderTexture.h -------------------------------------------------------------------------------- /cocos/2d/CCScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCScene.cpp -------------------------------------------------------------------------------- /cocos/2d/CCScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCScene.h -------------------------------------------------------------------------------- /cocos/2d/CCSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCSprite.cpp -------------------------------------------------------------------------------- /cocos/2d/CCSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCSprite.h -------------------------------------------------------------------------------- /cocos/2d/CCSpriteBatchNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCSpriteBatchNode.cpp -------------------------------------------------------------------------------- /cocos/2d/CCSpriteBatchNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCSpriteBatchNode.h -------------------------------------------------------------------------------- /cocos/2d/CCSpriteFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCSpriteFrame.cpp -------------------------------------------------------------------------------- /cocos/2d/CCSpriteFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCSpriteFrame.h -------------------------------------------------------------------------------- /cocos/2d/CCSpriteFrameCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCSpriteFrameCache.cpp -------------------------------------------------------------------------------- /cocos/2d/CCSpriteFrameCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCSpriteFrameCache.h -------------------------------------------------------------------------------- /cocos/2d/CCTMXLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTMXLayer.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTMXLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTMXLayer.h -------------------------------------------------------------------------------- /cocos/2d/CCTMXObjectGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTMXObjectGroup.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTMXObjectGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTMXObjectGroup.h -------------------------------------------------------------------------------- /cocos/2d/CCTMXTiledMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTMXTiledMap.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTMXTiledMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTMXTiledMap.h -------------------------------------------------------------------------------- /cocos/2d/CCTMXXMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTMXXMLParser.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTMXXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTMXXMLParser.h -------------------------------------------------------------------------------- /cocos/2d/CCTextFieldTTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTextFieldTTF.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTextFieldTTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTextFieldTTF.h -------------------------------------------------------------------------------- /cocos/2d/CCTileMapAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTileMapAtlas.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTileMapAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTileMapAtlas.h -------------------------------------------------------------------------------- /cocos/2d/CCTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTransition.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTransition.h -------------------------------------------------------------------------------- /cocos/2d/CCTransitionPageTurn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTransitionPageTurn.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTransitionPageTurn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTransitionPageTurn.h -------------------------------------------------------------------------------- /cocos/2d/CCTransitionProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTransitionProgress.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTransitionProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTransitionProgress.h -------------------------------------------------------------------------------- /cocos/2d/CCTweenFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTweenFunction.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTweenFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CCTweenFunction.h -------------------------------------------------------------------------------- /cocos/2d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/2d/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/3d/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/Android.mk -------------------------------------------------------------------------------- /cocos/3d/CC3DProgramInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CC3DProgramInfo.cpp -------------------------------------------------------------------------------- /cocos/3d/CC3DProgramInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CC3DProgramInfo.h -------------------------------------------------------------------------------- /cocos/3d/CCAABB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCAABB.cpp -------------------------------------------------------------------------------- /cocos/3d/CCAABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCAABB.h -------------------------------------------------------------------------------- /cocos/3d/CCAnimate3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCAnimate3D.cpp -------------------------------------------------------------------------------- /cocos/3d/CCAnimate3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCAnimate3D.h -------------------------------------------------------------------------------- /cocos/3d/CCAnimation3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCAnimation3D.cpp -------------------------------------------------------------------------------- /cocos/3d/CCAnimation3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCAnimation3D.h -------------------------------------------------------------------------------- /cocos/3d/CCAnimationCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCAnimationCurve.h -------------------------------------------------------------------------------- /cocos/3d/CCAnimationCurve.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCAnimationCurve.inl -------------------------------------------------------------------------------- /cocos/3d/CCAttachNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCAttachNode.cpp -------------------------------------------------------------------------------- /cocos/3d/CCAttachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCAttachNode.h -------------------------------------------------------------------------------- /cocos/3d/CCBillBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCBillBoard.cpp -------------------------------------------------------------------------------- /cocos/3d/CCBillBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCBillBoard.h -------------------------------------------------------------------------------- /cocos/3d/CCBundle3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCBundle3D.cpp -------------------------------------------------------------------------------- /cocos/3d/CCBundle3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCBundle3D.h -------------------------------------------------------------------------------- /cocos/3d/CCBundle3DData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCBundle3DData.cpp -------------------------------------------------------------------------------- /cocos/3d/CCBundle3DData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCBundle3DData.h -------------------------------------------------------------------------------- /cocos/3d/CCBundleReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCBundleReader.cpp -------------------------------------------------------------------------------- /cocos/3d/CCBundleReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCBundleReader.h -------------------------------------------------------------------------------- /cocos/3d/CCFrustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCFrustum.cpp -------------------------------------------------------------------------------- /cocos/3d/CCFrustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCFrustum.h -------------------------------------------------------------------------------- /cocos/3d/CCMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCMesh.cpp -------------------------------------------------------------------------------- /cocos/3d/CCMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCMesh.h -------------------------------------------------------------------------------- /cocos/3d/CCMeshSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCMeshSkin.cpp -------------------------------------------------------------------------------- /cocos/3d/CCMeshSkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCMeshSkin.h -------------------------------------------------------------------------------- /cocos/3d/CCMeshVertexIndexData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCMeshVertexIndexData.cpp -------------------------------------------------------------------------------- /cocos/3d/CCMeshVertexIndexData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCMeshVertexIndexData.h -------------------------------------------------------------------------------- /cocos/3d/CCMotionStreak3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCMotionStreak3D.cpp -------------------------------------------------------------------------------- /cocos/3d/CCMotionStreak3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCMotionStreak3D.h -------------------------------------------------------------------------------- /cocos/3d/CCOBB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCOBB.cpp -------------------------------------------------------------------------------- /cocos/3d/CCOBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCOBB.h -------------------------------------------------------------------------------- /cocos/3d/CCObjLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCObjLoader.cpp -------------------------------------------------------------------------------- /cocos/3d/CCObjLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCObjLoader.h -------------------------------------------------------------------------------- /cocos/3d/CCPlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCPlane.cpp -------------------------------------------------------------------------------- /cocos/3d/CCPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCPlane.h -------------------------------------------------------------------------------- /cocos/3d/CCRay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCRay.cpp -------------------------------------------------------------------------------- /cocos/3d/CCRay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCRay.h -------------------------------------------------------------------------------- /cocos/3d/CCSkeleton3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCSkeleton3D.cpp -------------------------------------------------------------------------------- /cocos/3d/CCSkeleton3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCSkeleton3D.h -------------------------------------------------------------------------------- /cocos/3d/CCSkybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCSkybox.cpp -------------------------------------------------------------------------------- /cocos/3d/CCSkybox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCSkybox.h -------------------------------------------------------------------------------- /cocos/3d/CCSprite3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCSprite3D.cpp -------------------------------------------------------------------------------- /cocos/3d/CCSprite3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCSprite3D.h -------------------------------------------------------------------------------- /cocos/3d/CCSprite3DMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCSprite3DMaterial.cpp -------------------------------------------------------------------------------- /cocos/3d/CCSprite3DMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCSprite3DMaterial.h -------------------------------------------------------------------------------- /cocos/3d/CCTerrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCTerrain.cpp -------------------------------------------------------------------------------- /cocos/3d/CCTerrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCTerrain.h -------------------------------------------------------------------------------- /cocos/3d/CCVertexAttribBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCVertexAttribBinding.cpp -------------------------------------------------------------------------------- /cocos/3d/CCVertexAttribBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CCVertexAttribBinding.h -------------------------------------------------------------------------------- /cocos/3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/3d/cocos3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/3d/cocos3d.h -------------------------------------------------------------------------------- /cocos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/audio/AudioEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/AudioEngine.cpp -------------------------------------------------------------------------------- /cocos/audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/audio/android/AssetFd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AssetFd.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AssetFd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AssetFd.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioDecoder.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioDecoder.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderMp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioDecoderMp3.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderMp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioDecoderMp3.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderOgg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioDecoderOgg.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderOgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioDecoderOgg.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderSLES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioDecoderSLES.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderSLES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioDecoderSLES.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderWav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioDecoderWav.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderWav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioDecoderWav.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioEngine-inl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioEngine-inl.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioEngine-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioEngine-inl.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioMixer.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioMixer.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioMixerOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioMixerOps.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioResampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioResampler.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioResampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/AudioResampler.h -------------------------------------------------------------------------------- /cocos/audio/android/CCThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/CCThreadPool.cpp -------------------------------------------------------------------------------- /cocos/audio/android/CCThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/CCThreadPool.h -------------------------------------------------------------------------------- /cocos/audio/android/IAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/IAudioPlayer.h -------------------------------------------------------------------------------- /cocos/audio/android/IVolumeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/IVolumeProvider.h -------------------------------------------------------------------------------- /cocos/audio/android/OpenSLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/OpenSLHelper.h -------------------------------------------------------------------------------- /cocos/audio/android/PcmAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/PcmAudioPlayer.h -------------------------------------------------------------------------------- /cocos/audio/android/PcmAudioService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/PcmAudioService.h -------------------------------------------------------------------------------- /cocos/audio/android/PcmData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/PcmData.cpp -------------------------------------------------------------------------------- /cocos/audio/android/PcmData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/PcmData.h -------------------------------------------------------------------------------- /cocos/audio/android/Track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/Track.cpp -------------------------------------------------------------------------------- /cocos/audio/android/Track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/Track.h -------------------------------------------------------------------------------- /cocos/audio/android/UrlAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/UrlAudioPlayer.h -------------------------------------------------------------------------------- /cocos/audio/android/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/audio.h -------------------------------------------------------------------------------- /cocos/audio/android/ccdandroidUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/ccdandroidUtils.h -------------------------------------------------------------------------------- /cocos/audio/android/cutils/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/cutils/bitops.h -------------------------------------------------------------------------------- /cocos/audio/android/cutils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/cutils/log.h -------------------------------------------------------------------------------- /cocos/audio/android/mp3reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/mp3reader.cpp -------------------------------------------------------------------------------- /cocos/audio/android/mp3reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/mp3reader.h -------------------------------------------------------------------------------- /cocos/audio/android/tinysndfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/tinysndfile.cpp -------------------------------------------------------------------------------- /cocos/audio/android/tinysndfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/tinysndfile.h -------------------------------------------------------------------------------- /cocos/audio/android/utils/Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/utils/Compat.h -------------------------------------------------------------------------------- /cocos/audio/android/utils/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/utils/Errors.h -------------------------------------------------------------------------------- /cocos/audio/android/utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/utils/Utils.cpp -------------------------------------------------------------------------------- /cocos/audio/android/utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/android/utils/Utils.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/apple/AudioCache.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioCache.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/apple/AudioCache.mm -------------------------------------------------------------------------------- /cocos/audio/apple/AudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/apple/AudioDecoder.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioDecoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/apple/AudioDecoder.mm -------------------------------------------------------------------------------- /cocos/audio/apple/AudioEngine-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/apple/AudioEngine-inl.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioEngine-inl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/apple/AudioEngine-inl.mm -------------------------------------------------------------------------------- /cocos/audio/apple/AudioMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/apple/AudioMacros.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/apple/AudioPlayer.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioPlayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/apple/AudioPlayer.mm -------------------------------------------------------------------------------- /cocos/audio/include/AudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/include/AudioEngine.h -------------------------------------------------------------------------------- /cocos/audio/include/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/include/Export.h -------------------------------------------------------------------------------- /cocos/audio/linux/AudioEngine-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/linux/AudioEngine-linux.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioCache.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioCache.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioDecoder.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioDecoder.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoderMp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioDecoderMp3.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoderMp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioDecoderMp3.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoderOgg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioDecoderOgg.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoderOgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioDecoderOgg.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioEngine-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioEngine-win32.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioMacros.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioPlayer.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/AudioPlayer.h -------------------------------------------------------------------------------- /cocos/audio/win32/MciPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/MciPlayer.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/MciPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/audio/win32/MciPlayer.h -------------------------------------------------------------------------------- /cocos/base/CCAsyncTaskPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCAsyncTaskPool.cpp -------------------------------------------------------------------------------- /cocos/base/CCAsyncTaskPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCAsyncTaskPool.h -------------------------------------------------------------------------------- /cocos/base/CCAutoreleasePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCAutoreleasePool.cpp -------------------------------------------------------------------------------- /cocos/base/CCAutoreleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCAutoreleasePool.h -------------------------------------------------------------------------------- /cocos/base/CCConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCConfiguration.cpp -------------------------------------------------------------------------------- /cocos/base/CCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCConfiguration.h -------------------------------------------------------------------------------- /cocos/base/CCConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCConsole.cpp -------------------------------------------------------------------------------- /cocos/base/CCConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCConsole.h -------------------------------------------------------------------------------- /cocos/base/CCController-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCController-android.cpp -------------------------------------------------------------------------------- /cocos/base/CCController-apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCController-apple.mm -------------------------------------------------------------------------------- /cocos/base/CCController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCController.cpp -------------------------------------------------------------------------------- /cocos/base/CCController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCController.h -------------------------------------------------------------------------------- /cocos/base/CCData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCData.cpp -------------------------------------------------------------------------------- /cocos/base/CCData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCData.h -------------------------------------------------------------------------------- /cocos/base/CCDirector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCDirector.cpp -------------------------------------------------------------------------------- /cocos/base/CCDirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCDirector.h -------------------------------------------------------------------------------- /cocos/base/CCEnumClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEnumClass.h -------------------------------------------------------------------------------- /cocos/base/CCEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEvent.cpp -------------------------------------------------------------------------------- /cocos/base/CCEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEvent.h -------------------------------------------------------------------------------- /cocos/base/CCEventAcceleration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventAcceleration.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventAcceleration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventAcceleration.h -------------------------------------------------------------------------------- /cocos/base/CCEventController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventController.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventController.h -------------------------------------------------------------------------------- /cocos/base/CCEventCustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventCustom.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventCustom.h -------------------------------------------------------------------------------- /cocos/base/CCEventDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventDispatcher.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventDispatcher.h -------------------------------------------------------------------------------- /cocos/base/CCEventFocus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventFocus.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventFocus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventFocus.h -------------------------------------------------------------------------------- /cocos/base/CCEventKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventKeyboard.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventKeyboard.h -------------------------------------------------------------------------------- /cocos/base/CCEventListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventListener.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventListener.h -------------------------------------------------------------------------------- /cocos/base/CCEventListenerCustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventListenerCustom.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventListenerCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventListenerCustom.h -------------------------------------------------------------------------------- /cocos/base/CCEventListenerFocus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventListenerFocus.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventListenerFocus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventListenerFocus.h -------------------------------------------------------------------------------- /cocos/base/CCEventListenerKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventListenerKeyboard.h -------------------------------------------------------------------------------- /cocos/base/CCEventListenerMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventListenerMouse.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventListenerMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventListenerMouse.h -------------------------------------------------------------------------------- /cocos/base/CCEventListenerTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventListenerTouch.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventListenerTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventListenerTouch.h -------------------------------------------------------------------------------- /cocos/base/CCEventMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventMouse.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventMouse.h -------------------------------------------------------------------------------- /cocos/base/CCEventTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventTouch.cpp -------------------------------------------------------------------------------- /cocos/base/CCEventTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventTouch.h -------------------------------------------------------------------------------- /cocos/base/CCEventType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCEventType.h -------------------------------------------------------------------------------- /cocos/base/CCGameController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCGameController.h -------------------------------------------------------------------------------- /cocos/base/CCIMEDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCIMEDelegate.h -------------------------------------------------------------------------------- /cocos/base/CCIMEDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCIMEDispatcher.cpp -------------------------------------------------------------------------------- /cocos/base/CCIMEDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCIMEDispatcher.h -------------------------------------------------------------------------------- /cocos/base/CCMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCMap.h -------------------------------------------------------------------------------- /cocos/base/CCNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCNS.cpp -------------------------------------------------------------------------------- /cocos/base/CCNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCNS.h -------------------------------------------------------------------------------- /cocos/base/CCNinePatchImageParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCNinePatchImageParser.cpp -------------------------------------------------------------------------------- /cocos/base/CCNinePatchImageParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCNinePatchImageParser.h -------------------------------------------------------------------------------- /cocos/base/CCProfiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCProfiling.cpp -------------------------------------------------------------------------------- /cocos/base/CCProfiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCProfiling.h -------------------------------------------------------------------------------- /cocos/base/CCProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCProperties.cpp -------------------------------------------------------------------------------- /cocos/base/CCProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCProperties.h -------------------------------------------------------------------------------- /cocos/base/CCProtocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCProtocols.h -------------------------------------------------------------------------------- /cocos/base/CCRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCRef.cpp -------------------------------------------------------------------------------- /cocos/base/CCRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCRef.h -------------------------------------------------------------------------------- /cocos/base/CCRefPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCRefPtr.h -------------------------------------------------------------------------------- /cocos/base/CCScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCScheduler.cpp -------------------------------------------------------------------------------- /cocos/base/CCScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCScheduler.h -------------------------------------------------------------------------------- /cocos/base/CCScriptSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCScriptSupport.cpp -------------------------------------------------------------------------------- /cocos/base/CCScriptSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCScriptSupport.h -------------------------------------------------------------------------------- /cocos/base/CCStencilStateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCStencilStateManager.cpp -------------------------------------------------------------------------------- /cocos/base/CCStencilStateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCStencilStateManager.h -------------------------------------------------------------------------------- /cocos/base/CCTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCTouch.cpp -------------------------------------------------------------------------------- /cocos/base/CCTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCTouch.h -------------------------------------------------------------------------------- /cocos/base/CCUserDefault-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCUserDefault-android.cpp -------------------------------------------------------------------------------- /cocos/base/CCUserDefault-apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCUserDefault-apple.mm -------------------------------------------------------------------------------- /cocos/base/CCUserDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCUserDefault.cpp -------------------------------------------------------------------------------- /cocos/base/CCUserDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCUserDefault.h -------------------------------------------------------------------------------- /cocos/base/CCValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCValue.cpp -------------------------------------------------------------------------------- /cocos/base/CCValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCValue.h -------------------------------------------------------------------------------- /cocos/base/CCVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CCVector.h -------------------------------------------------------------------------------- /cocos/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/base/ObjectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ObjectFactory.cpp -------------------------------------------------------------------------------- /cocos/base/ObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ObjectFactory.h -------------------------------------------------------------------------------- /cocos/base/TGAlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/TGAlib.cpp -------------------------------------------------------------------------------- /cocos/base/TGAlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/TGAlib.h -------------------------------------------------------------------------------- /cocos/base/ZipUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ZipUtils.cpp -------------------------------------------------------------------------------- /cocos/base/ZipUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ZipUtils.h -------------------------------------------------------------------------------- /cocos/base/atitc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/atitc.cpp -------------------------------------------------------------------------------- /cocos/base/atitc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/atitc.h -------------------------------------------------------------------------------- /cocos/base/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/base64.cpp -------------------------------------------------------------------------------- /cocos/base/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/base64.h -------------------------------------------------------------------------------- /cocos/base/ccCArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccCArray.cpp -------------------------------------------------------------------------------- /cocos/base/ccCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccCArray.h -------------------------------------------------------------------------------- /cocos/base/ccConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccConfig.h -------------------------------------------------------------------------------- /cocos/base/ccConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccConstants.h -------------------------------------------------------------------------------- /cocos/base/ccFPSImages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccFPSImages.c -------------------------------------------------------------------------------- /cocos/base/ccFPSImages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccFPSImages.h -------------------------------------------------------------------------------- /cocos/base/ccMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccMacros.h -------------------------------------------------------------------------------- /cocos/base/ccRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccRandom.cpp -------------------------------------------------------------------------------- /cocos/base/ccRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccRandom.h -------------------------------------------------------------------------------- /cocos/base/ccTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccTypes.cpp -------------------------------------------------------------------------------- /cocos/base/ccTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccTypes.h -------------------------------------------------------------------------------- /cocos/base/ccUTF8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccUTF8.cpp -------------------------------------------------------------------------------- /cocos/base/ccUTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccUTF8.h -------------------------------------------------------------------------------- /cocos/base/ccUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccUtils.cpp -------------------------------------------------------------------------------- /cocos/base/ccUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/ccUtils.h -------------------------------------------------------------------------------- /cocos/base/etc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/etc1.cpp -------------------------------------------------------------------------------- /cocos/base/etc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/etc1.h -------------------------------------------------------------------------------- /cocos/base/firePngData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/firePngData.h -------------------------------------------------------------------------------- /cocos/base/pvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/pvr.cpp -------------------------------------------------------------------------------- /cocos/base/pvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/pvr.h -------------------------------------------------------------------------------- /cocos/base/s3tc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/s3tc.cpp -------------------------------------------------------------------------------- /cocos/base/s3tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/s3tc.h -------------------------------------------------------------------------------- /cocos/base/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/uthash.h -------------------------------------------------------------------------------- /cocos/base/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/base/utlist.h -------------------------------------------------------------------------------- /cocos/cocos2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/cocos2d.cpp -------------------------------------------------------------------------------- /cocos/cocos2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/cocos2d.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Atlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Atlas.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Atlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Atlas.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Bone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Bone.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Bone.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/BoneData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/BoneData.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Color.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Debug.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Event.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Event.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/HashMap.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Json.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Json.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/MathUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/MathUtil.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/MixBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/MixBlend.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Pool.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/RTTI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/RTTI.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/RTTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/RTTI.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Skeleton.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Skin.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Skin.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Slot.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Slot.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/SlotData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/SlotData.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Timeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Vector.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Vertices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/Vertices.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/dll.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/spine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/editor-support/spine/spine.h -------------------------------------------------------------------------------- /cocos/math/CCAffineTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/CCAffineTransform.cpp -------------------------------------------------------------------------------- /cocos/math/CCAffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/CCAffineTransform.h -------------------------------------------------------------------------------- /cocos/math/CCGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/CCGeometry.cpp -------------------------------------------------------------------------------- /cocos/math/CCGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/CCGeometry.h -------------------------------------------------------------------------------- /cocos/math/CCMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/CCMath.h -------------------------------------------------------------------------------- /cocos/math/CCMathBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/CCMathBase.h -------------------------------------------------------------------------------- /cocos/math/CCVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/CCVertex.cpp -------------------------------------------------------------------------------- /cocos/math/CCVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/CCVertex.h -------------------------------------------------------------------------------- /cocos/math/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/math/Mat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Mat4.cpp -------------------------------------------------------------------------------- /cocos/math/Mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Mat4.h -------------------------------------------------------------------------------- /cocos/math/Mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Mat4.inl -------------------------------------------------------------------------------- /cocos/math/MathUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/MathUtil.cpp -------------------------------------------------------------------------------- /cocos/math/MathUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/MathUtil.h -------------------------------------------------------------------------------- /cocos/math/MathUtil.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/MathUtil.inl -------------------------------------------------------------------------------- /cocos/math/MathUtilNeon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/MathUtilNeon.inl -------------------------------------------------------------------------------- /cocos/math/MathUtilNeon64.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/MathUtilNeon64.inl -------------------------------------------------------------------------------- /cocos/math/MathUtilSSE.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/MathUtilSSE.inl -------------------------------------------------------------------------------- /cocos/math/Quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Quaternion.cpp -------------------------------------------------------------------------------- /cocos/math/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Quaternion.h -------------------------------------------------------------------------------- /cocos/math/Quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Quaternion.inl -------------------------------------------------------------------------------- /cocos/math/TransformUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/TransformUtils.cpp -------------------------------------------------------------------------------- /cocos/math/TransformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/TransformUtils.h -------------------------------------------------------------------------------- /cocos/math/Vec2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Vec2.cpp -------------------------------------------------------------------------------- /cocos/math/Vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Vec2.h -------------------------------------------------------------------------------- /cocos/math/Vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Vec2.inl -------------------------------------------------------------------------------- /cocos/math/Vec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Vec3.cpp -------------------------------------------------------------------------------- /cocos/math/Vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Vec3.h -------------------------------------------------------------------------------- /cocos/math/Vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Vec3.inl -------------------------------------------------------------------------------- /cocos/math/Vec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Vec4.cpp -------------------------------------------------------------------------------- /cocos/math/Vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Vec4.h -------------------------------------------------------------------------------- /cocos/math/Vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/math/Vec4.inl -------------------------------------------------------------------------------- /cocos/navmesh/CCNavMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/navmesh/CCNavMesh.cpp -------------------------------------------------------------------------------- /cocos/navmesh/CCNavMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/navmesh/CCNavMesh.h -------------------------------------------------------------------------------- /cocos/navmesh/CCNavMeshAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/navmesh/CCNavMeshAgent.cpp -------------------------------------------------------------------------------- /cocos/navmesh/CCNavMeshAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/navmesh/CCNavMeshAgent.h -------------------------------------------------------------------------------- /cocos/navmesh/CCNavMeshDebugDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/navmesh/CCNavMeshDebugDraw.cpp -------------------------------------------------------------------------------- /cocos/navmesh/CCNavMeshDebugDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/navmesh/CCNavMeshDebugDraw.h -------------------------------------------------------------------------------- /cocos/navmesh/CCNavMeshObstacle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/navmesh/CCNavMeshObstacle.cpp -------------------------------------------------------------------------------- /cocos/navmesh/CCNavMeshObstacle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/navmesh/CCNavMeshObstacle.h -------------------------------------------------------------------------------- /cocos/navmesh/CCNavMeshUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/navmesh/CCNavMeshUtils.cpp -------------------------------------------------------------------------------- /cocos/navmesh/CCNavMeshUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/navmesh/CCNavMeshUtils.h -------------------------------------------------------------------------------- /cocos/navmesh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/navmesh/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/network/CCDownloader-android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/CCDownloader-android.h -------------------------------------------------------------------------------- /cocos/network/CCDownloader-apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/CCDownloader-apple.h -------------------------------------------------------------------------------- /cocos/network/CCDownloader-apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/CCDownloader-apple.mm -------------------------------------------------------------------------------- /cocos/network/CCDownloader-curl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/CCDownloader-curl.cpp -------------------------------------------------------------------------------- /cocos/network/CCDownloader-curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/CCDownloader-curl.h -------------------------------------------------------------------------------- /cocos/network/CCDownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/CCDownloader.cpp -------------------------------------------------------------------------------- /cocos/network/CCDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/CCDownloader.h -------------------------------------------------------------------------------- /cocos/network/CCIDownloaderImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/CCIDownloaderImpl.h -------------------------------------------------------------------------------- /cocos/network/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/network/HttpClient-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/HttpClient-android.cpp -------------------------------------------------------------------------------- /cocos/network/HttpClient-apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/HttpClient-apple.mm -------------------------------------------------------------------------------- /cocos/network/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/HttpClient.cpp -------------------------------------------------------------------------------- /cocos/network/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/HttpClient.h -------------------------------------------------------------------------------- /cocos/network/HttpCookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/HttpCookie.cpp -------------------------------------------------------------------------------- /cocos/network/HttpCookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/HttpCookie.h -------------------------------------------------------------------------------- /cocos/network/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/HttpRequest.h -------------------------------------------------------------------------------- /cocos/network/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/HttpResponse.h -------------------------------------------------------------------------------- /cocos/network/SocketIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/SocketIO.cpp -------------------------------------------------------------------------------- /cocos/network/SocketIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/SocketIO.h -------------------------------------------------------------------------------- /cocos/network/Uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/Uri.cpp -------------------------------------------------------------------------------- /cocos/network/Uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/Uri.h -------------------------------------------------------------------------------- /cocos/network/WebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/WebSocket.cpp -------------------------------------------------------------------------------- /cocos/network/WebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/network/WebSocket.h -------------------------------------------------------------------------------- /cocos/physics/CCPhysicsBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CCPhysicsBody.cpp -------------------------------------------------------------------------------- /cocos/physics/CCPhysicsBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CCPhysicsBody.h -------------------------------------------------------------------------------- /cocos/physics/CCPhysicsContact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CCPhysicsContact.cpp -------------------------------------------------------------------------------- /cocos/physics/CCPhysicsContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CCPhysicsContact.h -------------------------------------------------------------------------------- /cocos/physics/CCPhysicsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CCPhysicsHelper.h -------------------------------------------------------------------------------- /cocos/physics/CCPhysicsJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CCPhysicsJoint.cpp -------------------------------------------------------------------------------- /cocos/physics/CCPhysicsJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CCPhysicsJoint.h -------------------------------------------------------------------------------- /cocos/physics/CCPhysicsShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CCPhysicsShape.cpp -------------------------------------------------------------------------------- /cocos/physics/CCPhysicsShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CCPhysicsShape.h -------------------------------------------------------------------------------- /cocos/physics/CCPhysicsWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CCPhysicsWorld.cpp -------------------------------------------------------------------------------- /cocos/physics/CCPhysicsWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CCPhysicsWorld.h -------------------------------------------------------------------------------- /cocos/physics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/physics/cpCompat62.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics/cpCompat62.h -------------------------------------------------------------------------------- /cocos/physics3d/CCPhysics3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics3d/CCPhysics3D.cpp -------------------------------------------------------------------------------- /cocos/physics3d/CCPhysics3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics3d/CCPhysics3D.h -------------------------------------------------------------------------------- /cocos/physics3d/CCPhysics3DObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics3d/CCPhysics3DObject.cpp -------------------------------------------------------------------------------- /cocos/physics3d/CCPhysics3DObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics3d/CCPhysics3DObject.h -------------------------------------------------------------------------------- /cocos/physics3d/CCPhysics3DShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics3d/CCPhysics3DShape.cpp -------------------------------------------------------------------------------- /cocos/physics3d/CCPhysics3DShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics3d/CCPhysics3DShape.h -------------------------------------------------------------------------------- /cocos/physics3d/CCPhysics3DWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics3d/CCPhysics3DWorld.cpp -------------------------------------------------------------------------------- /cocos/physics3d/CCPhysics3DWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics3d/CCPhysics3DWorld.h -------------------------------------------------------------------------------- /cocos/physics3d/CCPhysicsSprite3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics3d/CCPhysicsSprite3D.cpp -------------------------------------------------------------------------------- /cocos/physics3d/CCPhysicsSprite3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics3d/CCPhysicsSprite3D.h -------------------------------------------------------------------------------- /cocos/physics3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/physics3d/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/platform/CCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCApplication.h -------------------------------------------------------------------------------- /cocos/platform/CCCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCCommon.h -------------------------------------------------------------------------------- /cocos/platform/CCDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCDevice.h -------------------------------------------------------------------------------- /cocos/platform/CCFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCFileUtils.cpp -------------------------------------------------------------------------------- /cocos/platform/CCFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCFileUtils.h -------------------------------------------------------------------------------- /cocos/platform/CCGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCGL.h -------------------------------------------------------------------------------- /cocos/platform/CCGLView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCGLView.cpp -------------------------------------------------------------------------------- /cocos/platform/CCGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCGLView.h -------------------------------------------------------------------------------- /cocos/platform/CCImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCImage.cpp -------------------------------------------------------------------------------- /cocos/platform/CCImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCImage.h -------------------------------------------------------------------------------- /cocos/platform/CCPlatformConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCPlatformConfig.h -------------------------------------------------------------------------------- /cocos/platform/CCPlatformDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCPlatformDefine.h -------------------------------------------------------------------------------- /cocos/platform/CCPlatformMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCPlatformMacros.h -------------------------------------------------------------------------------- /cocos/platform/CCSAXParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCSAXParser.cpp -------------------------------------------------------------------------------- /cocos/platform/CCSAXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCSAXParser.h -------------------------------------------------------------------------------- /cocos/platform/CCStdC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CCStdC.h -------------------------------------------------------------------------------- /cocos/platform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/platform/android/CCGL-android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/android/CCGL-android.h -------------------------------------------------------------------------------- /cocos/platform/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/android/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/platform/android/ControllerManualAdapter/res/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cocos/platform/android/java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/android/java/.project -------------------------------------------------------------------------------- /cocos/platform/android/java/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/android/java/build.xml -------------------------------------------------------------------------------- /cocos/platform/android/java/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/android/java/lint.xml -------------------------------------------------------------------------------- /cocos/platform/android/java/res/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cocos/platform/apple/CCDevice-apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/apple/CCDevice-apple.h -------------------------------------------------------------------------------- /cocos/platform/ios/CCCommon-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/ios/CCCommon-ios.mm -------------------------------------------------------------------------------- /cocos/platform/ios/CCDevice-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/ios/CCDevice-ios.mm -------------------------------------------------------------------------------- /cocos/platform/ios/CCEAGLView-ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/ios/CCEAGLView-ios.h -------------------------------------------------------------------------------- /cocos/platform/ios/CCEAGLView-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/ios/CCEAGLView-ios.mm -------------------------------------------------------------------------------- /cocos/platform/ios/CCGLViewImpl-ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/ios/CCGLViewImpl-ios.h -------------------------------------------------------------------------------- /cocos/platform/ios/CCImage-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/ios/CCImage-ios.mm -------------------------------------------------------------------------------- /cocos/platform/ios/CCInputView-ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/ios/CCInputView-ios.h -------------------------------------------------------------------------------- /cocos/platform/ios/CCInputView-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/ios/CCInputView-ios.mm -------------------------------------------------------------------------------- /cocos/platform/ios/CCStdC-ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/ios/CCStdC-ios.h -------------------------------------------------------------------------------- /cocos/platform/ios/cocos2d-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/ios/cocos2d-prefix.pch -------------------------------------------------------------------------------- /cocos/platform/linux/CCGL-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/linux/CCGL-linux.h -------------------------------------------------------------------------------- /cocos/platform/linux/CCStdC-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/linux/CCStdC-linux.h -------------------------------------------------------------------------------- /cocos/platform/mac/CCCommon-mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/mac/CCCommon-mac.mm -------------------------------------------------------------------------------- /cocos/platform/mac/CCDevice-mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/mac/CCDevice-mac.mm -------------------------------------------------------------------------------- /cocos/platform/mac/CCGLViewImpl-mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/mac/CCGLViewImpl-mac.h -------------------------------------------------------------------------------- /cocos/platform/mac/CCStdC-mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/mac/CCStdC-mac.h -------------------------------------------------------------------------------- /cocos/platform/mac/cocos2d-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/mac/cocos2d-prefix.pch -------------------------------------------------------------------------------- /cocos/platform/win32/CCGL-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/win32/CCGL-win32.h -------------------------------------------------------------------------------- /cocos/platform/win32/CCStdC-win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/win32/CCStdC-win32.cpp -------------------------------------------------------------------------------- /cocos/platform/win32/CCStdC-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/win32/CCStdC-win32.h -------------------------------------------------------------------------------- /cocos/platform/win32/CCUtils-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/win32/CCUtils-win32.h -------------------------------------------------------------------------------- /cocos/platform/win32/compat/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/platform/win32/compat/stdint.h -------------------------------------------------------------------------------- /cocos/precheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/precheader.cpp -------------------------------------------------------------------------------- /cocos/precheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/precheader.h -------------------------------------------------------------------------------- /cocos/renderer/CCCallbackCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCCallbackCommand.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCCallbackCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCCallbackCommand.h -------------------------------------------------------------------------------- /cocos/renderer/CCCustomCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCCustomCommand.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCCustomCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCCustomCommand.h -------------------------------------------------------------------------------- /cocos/renderer/CCGroupCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCGroupCommand.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCGroupCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCGroupCommand.h -------------------------------------------------------------------------------- /cocos/renderer/CCMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCMaterial.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCMaterial.h -------------------------------------------------------------------------------- /cocos/renderer/CCMeshCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCMeshCommand.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCMeshCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCMeshCommand.h -------------------------------------------------------------------------------- /cocos/renderer/CCPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCPass.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCPass.h -------------------------------------------------------------------------------- /cocos/renderer/CCPipelineDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCPipelineDescriptor.h -------------------------------------------------------------------------------- /cocos/renderer/CCQuadCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCQuadCommand.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCQuadCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCQuadCommand.h -------------------------------------------------------------------------------- /cocos/renderer/CCRenderCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCRenderCommand.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCRenderCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCRenderCommand.h -------------------------------------------------------------------------------- /cocos/renderer/CCRenderCommandPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCRenderCommandPool.h -------------------------------------------------------------------------------- /cocos/renderer/CCRenderState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCRenderState.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCRenderState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCRenderState.h -------------------------------------------------------------------------------- /cocos/renderer/CCRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCRenderer.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCRenderer.h -------------------------------------------------------------------------------- /cocos/renderer/CCTechnique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTechnique.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCTechnique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTechnique.h -------------------------------------------------------------------------------- /cocos/renderer/CCTexture2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTexture2D.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCTexture2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTexture2D.h -------------------------------------------------------------------------------- /cocos/renderer/CCTextureAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTextureAtlas.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCTextureAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTextureAtlas.h -------------------------------------------------------------------------------- /cocos/renderer/CCTextureCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTextureCache.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCTextureCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTextureCache.h -------------------------------------------------------------------------------- /cocos/renderer/CCTextureCube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTextureCube.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCTextureCube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTextureCube.h -------------------------------------------------------------------------------- /cocos/renderer/CCTextureUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTextureUtils.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCTextureUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTextureUtils.h -------------------------------------------------------------------------------- /cocos/renderer/CCTrianglesCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTrianglesCommand.cpp -------------------------------------------------------------------------------- /cocos/renderer/CCTrianglesCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CCTrianglesCommand.h -------------------------------------------------------------------------------- /cocos/renderer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/renderer/backend/Backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/Backend.h -------------------------------------------------------------------------------- /cocos/renderer/backend/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/Buffer.h -------------------------------------------------------------------------------- /cocos/renderer/backend/Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/Device.cpp -------------------------------------------------------------------------------- /cocos/renderer/backend/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/Device.h -------------------------------------------------------------------------------- /cocos/renderer/backend/DeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/DeviceInfo.h -------------------------------------------------------------------------------- /cocos/renderer/backend/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/Macros.h -------------------------------------------------------------------------------- /cocos/renderer/backend/Program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/Program.cpp -------------------------------------------------------------------------------- /cocos/renderer/backend/Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/Program.h -------------------------------------------------------------------------------- /cocos/renderer/backend/ProgramCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/ProgramCache.h -------------------------------------------------------------------------------- /cocos/renderer/backend/ProgramState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/ProgramState.h -------------------------------------------------------------------------------- /cocos/renderer/backend/ShaderCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/ShaderCache.h -------------------------------------------------------------------------------- /cocos/renderer/backend/ShaderModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/ShaderModule.h -------------------------------------------------------------------------------- /cocos/renderer/backend/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/Texture.cpp -------------------------------------------------------------------------------- /cocos/renderer/backend/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/Texture.h -------------------------------------------------------------------------------- /cocos/renderer/backend/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/Types.cpp -------------------------------------------------------------------------------- /cocos/renderer/backend/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/Types.h -------------------------------------------------------------------------------- /cocos/renderer/backend/VertexLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/VertexLayout.h -------------------------------------------------------------------------------- /cocos/renderer/backend/metal/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/metal/Utils.h -------------------------------------------------------------------------------- /cocos/renderer/backend/metal/Utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/backend/metal/Utils.mm -------------------------------------------------------------------------------- /cocos/renderer/ccShaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/ccShaders.cpp -------------------------------------------------------------------------------- /cocos/renderer/ccShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/ccShaders.h -------------------------------------------------------------------------------- /cocos/renderer/shaders/3D_color.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/shaders/3D_color.frag -------------------------------------------------------------------------------- /cocos/renderer/shaders/3D_skybox.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/shaders/3D_skybox.frag -------------------------------------------------------------------------------- /cocos/renderer/shaders/3D_skybox.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/shaders/3D_skybox.vert -------------------------------------------------------------------------------- /cocos/renderer/shaders/etc1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/shaders/etc1.frag -------------------------------------------------------------------------------- /cocos/renderer/shaders/etc1_Gray.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/shaders/etc1_Gray.frag -------------------------------------------------------------------------------- /cocos/renderer/shaders/lineColor.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/shaders/lineColor.frag -------------------------------------------------------------------------------- /cocos/renderer/shaders/lineColor.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/shaders/lineColor.vert -------------------------------------------------------------------------------- /cocos/renderer/shaders/position.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/shaders/position.vert -------------------------------------------------------------------------------- /cocos/renderer/shaders/ui_Gray.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/renderer/shaders/ui_Gray.frag -------------------------------------------------------------------------------- /cocos/scripting/deprecated/CCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/scripting/deprecated/CCArray.h -------------------------------------------------------------------------------- /cocos/scripting/deprecated/CCBool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/scripting/deprecated/CCBool.h -------------------------------------------------------------------------------- /cocos/scripting/deprecated/CCDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/scripting/deprecated/CCDouble.h -------------------------------------------------------------------------------- /cocos/scripting/deprecated/CCFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/scripting/deprecated/CCFloat.h -------------------------------------------------------------------------------- /cocos/scripting/deprecated/CCSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/scripting/deprecated/CCSet.cpp -------------------------------------------------------------------------------- /cocos/scripting/deprecated/CCSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/scripting/deprecated/CCSet.h -------------------------------------------------------------------------------- /cocos/scripting/deprecated/CCString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/scripting/deprecated/CCString.h -------------------------------------------------------------------------------- /cocos/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/CMakeLists.txt -------------------------------------------------------------------------------- /cocos/ui/CocosGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/CocosGUI.cpp -------------------------------------------------------------------------------- /cocos/ui/CocosGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/CocosGUI.h -------------------------------------------------------------------------------- /cocos/ui/GUIDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/GUIDefine.h -------------------------------------------------------------------------------- /cocos/ui/GUIExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/GUIExport.h -------------------------------------------------------------------------------- /cocos/ui/UIAbstractCheckButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIAbstractCheckButton.cpp -------------------------------------------------------------------------------- /cocos/ui/UIAbstractCheckButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIAbstractCheckButton.h -------------------------------------------------------------------------------- /cocos/ui/UIButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIButton.cpp -------------------------------------------------------------------------------- /cocos/ui/UIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIButton.h -------------------------------------------------------------------------------- /cocos/ui/UICheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UICheckBox.cpp -------------------------------------------------------------------------------- /cocos/ui/UICheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UICheckBox.h -------------------------------------------------------------------------------- /cocos/ui/UIEditBox/UIEditBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIEditBox/UIEditBox.cpp -------------------------------------------------------------------------------- /cocos/ui/UIEditBox/UIEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIEditBox/UIEditBox.h -------------------------------------------------------------------------------- /cocos/ui/UIEditBox/UIEditBoxImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIEditBox/UIEditBoxImpl.h -------------------------------------------------------------------------------- /cocos/ui/UIHBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIHBox.cpp -------------------------------------------------------------------------------- /cocos/ui/UIHBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIHBox.h -------------------------------------------------------------------------------- /cocos/ui/UIHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIHelper.cpp -------------------------------------------------------------------------------- /cocos/ui/UIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIHelper.h -------------------------------------------------------------------------------- /cocos/ui/UIImageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIImageView.cpp -------------------------------------------------------------------------------- /cocos/ui/UIImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIImageView.h -------------------------------------------------------------------------------- /cocos/ui/UILayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UILayout.cpp -------------------------------------------------------------------------------- /cocos/ui/UILayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UILayout.h -------------------------------------------------------------------------------- /cocos/ui/UILayoutComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UILayoutComponent.cpp -------------------------------------------------------------------------------- /cocos/ui/UILayoutComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UILayoutComponent.h -------------------------------------------------------------------------------- /cocos/ui/UILayoutManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UILayoutManager.cpp -------------------------------------------------------------------------------- /cocos/ui/UILayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UILayoutManager.h -------------------------------------------------------------------------------- /cocos/ui/UILayoutParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UILayoutParameter.cpp -------------------------------------------------------------------------------- /cocos/ui/UILayoutParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UILayoutParameter.h -------------------------------------------------------------------------------- /cocos/ui/UIListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIListView.cpp -------------------------------------------------------------------------------- /cocos/ui/UIListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIListView.h -------------------------------------------------------------------------------- /cocos/ui/UILoadingBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UILoadingBar.cpp -------------------------------------------------------------------------------- /cocos/ui/UILoadingBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UILoadingBar.h -------------------------------------------------------------------------------- /cocos/ui/UIPageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIPageView.cpp -------------------------------------------------------------------------------- /cocos/ui/UIPageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIPageView.h -------------------------------------------------------------------------------- /cocos/ui/UIPageViewIndicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIPageViewIndicator.cpp -------------------------------------------------------------------------------- /cocos/ui/UIPageViewIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIPageViewIndicator.h -------------------------------------------------------------------------------- /cocos/ui/UIRadioButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIRadioButton.cpp -------------------------------------------------------------------------------- /cocos/ui/UIRadioButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIRadioButton.h -------------------------------------------------------------------------------- /cocos/ui/UIRelativeBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIRelativeBox.cpp -------------------------------------------------------------------------------- /cocos/ui/UIRelativeBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIRelativeBox.h -------------------------------------------------------------------------------- /cocos/ui/UIRichText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIRichText.cpp -------------------------------------------------------------------------------- /cocos/ui/UIRichText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIRichText.h -------------------------------------------------------------------------------- /cocos/ui/UIScale9Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIScale9Sprite.cpp -------------------------------------------------------------------------------- /cocos/ui/UIScale9Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIScale9Sprite.h -------------------------------------------------------------------------------- /cocos/ui/UIScrollView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIScrollView.cpp -------------------------------------------------------------------------------- /cocos/ui/UIScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIScrollView.h -------------------------------------------------------------------------------- /cocos/ui/UIScrollViewBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIScrollViewBar.cpp -------------------------------------------------------------------------------- /cocos/ui/UIScrollViewBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIScrollViewBar.h -------------------------------------------------------------------------------- /cocos/ui/UISlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UISlider.cpp -------------------------------------------------------------------------------- /cocos/ui/UISlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UISlider.h -------------------------------------------------------------------------------- /cocos/ui/UITabControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UITabControl.cpp -------------------------------------------------------------------------------- /cocos/ui/UITabControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UITabControl.h -------------------------------------------------------------------------------- /cocos/ui/UIText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIText.cpp -------------------------------------------------------------------------------- /cocos/ui/UIText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIText.h -------------------------------------------------------------------------------- /cocos/ui/UITextAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UITextAtlas.cpp -------------------------------------------------------------------------------- /cocos/ui/UITextAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UITextAtlas.h -------------------------------------------------------------------------------- /cocos/ui/UITextBMFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UITextBMFont.cpp -------------------------------------------------------------------------------- /cocos/ui/UITextBMFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UITextBMFont.h -------------------------------------------------------------------------------- /cocos/ui/UITextField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UITextField.cpp -------------------------------------------------------------------------------- /cocos/ui/UITextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UITextField.h -------------------------------------------------------------------------------- /cocos/ui/UIVBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIVBox.cpp -------------------------------------------------------------------------------- /cocos/ui/UIVBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIVBox.h -------------------------------------------------------------------------------- /cocos/ui/UIVideoPlayer-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIVideoPlayer-android.cpp -------------------------------------------------------------------------------- /cocos/ui/UIVideoPlayer-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIVideoPlayer-ios.mm -------------------------------------------------------------------------------- /cocos/ui/UIVideoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIVideoPlayer.h -------------------------------------------------------------------------------- /cocos/ui/UIWebView/UIWebView-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIWebView/UIWebView-inl.h -------------------------------------------------------------------------------- /cocos/ui/UIWebView/UIWebView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIWebView/UIWebView.cpp -------------------------------------------------------------------------------- /cocos/ui/UIWebView/UIWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIWebView/UIWebView.h -------------------------------------------------------------------------------- /cocos/ui/UIWebView/UIWebView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIWebView/UIWebView.mm -------------------------------------------------------------------------------- /cocos/ui/UIWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIWidget.cpp -------------------------------------------------------------------------------- /cocos/ui/UIWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/cocos/ui/UIWidget.h -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | .tee-*.txt 3 | 4 | -------------------------------------------------------------------------------- /docs/CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/CODING_STYLE.md -------------------------------------------------------------------------------- /docs/Groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/Groups.h -------------------------------------------------------------------------------- /docs/MainPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/MainPage.h -------------------------------------------------------------------------------- /docs/MainPageWhiteBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/MainPageWhiteBook.h -------------------------------------------------------------------------------- /docs/RELEASE_ENGINEERING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/RELEASE_ENGINEERING.md -------------------------------------------------------------------------------- /docs/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/RELEASE_NOTES.md -------------------------------------------------------------------------------- /docs/RELEASE_NOTES_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/RELEASE_NOTES_CN.md -------------------------------------------------------------------------------- /docs/cocos2dx_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/cocos2dx_portrait.png -------------------------------------------------------------------------------- /docs/doxygen.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/doxygen.config -------------------------------------------------------------------------------- /docs/doxygen_white_book.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/doxygen_white_book.config -------------------------------------------------------------------------------- /docs/framework_architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/framework_architecture.jpg -------------------------------------------------------------------------------- /docs/framework_architecture_v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/framework_architecture_v4.png -------------------------------------------------------------------------------- /docs/img-cocos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/docs/img-cocos.jpg -------------------------------------------------------------------------------- /download-deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/download-deps.py -------------------------------------------------------------------------------- /extensions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/extensions/CMakeLists.txt -------------------------------------------------------------------------------- /extensions/ExtensionExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/extensions/ExtensionExport.h -------------------------------------------------------------------------------- /extensions/ExtensionMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/extensions/ExtensionMacros.h -------------------------------------------------------------------------------- /extensions/Particle3D/PU/CCPUNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/extensions/Particle3D/PU/CCPUNoise.h -------------------------------------------------------------------------------- /extensions/Particle3D/PU/CCPUPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/extensions/Particle3D/PU/CCPUPlane.h -------------------------------------------------------------------------------- /extensions/Particle3D/PU/CCPURender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/extensions/Particle3D/PU/CCPURender.h -------------------------------------------------------------------------------- /extensions/Particle3D/PU/CCPUSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/extensions/Particle3D/PU/CCPUSphere.h -------------------------------------------------------------------------------- /extensions/Particle3D/PU/CCPUUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/extensions/Particle3D/PU/CCPUUtil.cpp -------------------------------------------------------------------------------- /extensions/Particle3D/PU/CCPUUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/extensions/Particle3D/PU/CCPUUtil.h -------------------------------------------------------------------------------- /extensions/assets-manager/Manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/extensions/assets-manager/Manifest.h -------------------------------------------------------------------------------- /extensions/cocos-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/extensions/cocos-ext.h -------------------------------------------------------------------------------- /external/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/external/config.json -------------------------------------------------------------------------------- /install-deps-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/install-deps-linux.sh -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/issue_template.md -------------------------------------------------------------------------------- /licenses/LICENSE_AA-EDT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_AA-EDT.txt -------------------------------------------------------------------------------- /licenses/LICENSE_CCBReader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_CCBReader.txt -------------------------------------------------------------------------------- /licenses/LICENSE_JSON4Lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_JSON4Lua.txt -------------------------------------------------------------------------------- /licenses/LICENSE_Kazmath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_Kazmath.txt -------------------------------------------------------------------------------- /licenses/LICENSE_LuaSocket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_LuaSocket.txt -------------------------------------------------------------------------------- /licenses/LICENSE_Poly2Tri.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_Poly2Tri.txt -------------------------------------------------------------------------------- /licenses/LICENSE_artwork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_artwork.txt -------------------------------------------------------------------------------- /licenses/LICENSE_box2d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_box2d.txt -------------------------------------------------------------------------------- /licenses/LICENSE_chipmunk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_chipmunk.txt -------------------------------------------------------------------------------- /licenses/LICENSE_cocos2d-iphone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_cocos2d-iphone.txt -------------------------------------------------------------------------------- /licenses/LICENSE_cocos2d-x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_cocos2d-x.txt -------------------------------------------------------------------------------- /licenses/LICENSE_curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_curl.txt -------------------------------------------------------------------------------- /licenses/LICENSE_jsoncpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_jsoncpp.txt -------------------------------------------------------------------------------- /licenses/LICENSE_libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_libjpeg.txt -------------------------------------------------------------------------------- /licenses/LICENSE_libmd5-rfc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_libmd5-rfc.txt -------------------------------------------------------------------------------- /licenses/LICENSE_libpng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_libpng.txt -------------------------------------------------------------------------------- /licenses/LICENSE_libwebsockets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_libwebsockets.txt -------------------------------------------------------------------------------- /licenses/LICENSE_libxml2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_libxml2.txt -------------------------------------------------------------------------------- /licenses/LICENSE_llvm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_llvm.txt -------------------------------------------------------------------------------- /licenses/LICENSE_lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_lua.txt -------------------------------------------------------------------------------- /licenses/LICENSE_ogg_vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_ogg_vorbis.txt -------------------------------------------------------------------------------- /licenses/LICENSE_pvmp3dec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_pvmp3dec.txt -------------------------------------------------------------------------------- /licenses/LICENSE_spine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_spine.txt -------------------------------------------------------------------------------- /licenses/LICENSE_tolua++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_tolua++.txt -------------------------------------------------------------------------------- /licenses/LICENSE_tremolo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_tremolo.txt -------------------------------------------------------------------------------- /licenses/LICENSE_unicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_unicode.txt -------------------------------------------------------------------------------- /licenses/LICENSE_zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/licenses/LICENSE_zlib.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/setup.py -------------------------------------------------------------------------------- /templates/cocos2dx_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/templates/cocos2dx_files.json -------------------------------------------------------------------------------- /templates/cpp-template-default/Resources/res/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | build-*/ -------------------------------------------------------------------------------- /tests/cpp-empty-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-empty-test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cpp-empty-test/Resources/.gitignore: -------------------------------------------------------------------------------- 1 | #Do now ignore Marmalade icf files 2 | !*.icf 3 | -------------------------------------------------------------------------------- /tests/cpp-empty-test/proj.ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-empty-test/proj.ios/main.m -------------------------------------------------------------------------------- /tests/cpp-empty-test/proj.mac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /tests/cpp-tests/.cocos-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/.cocos-project.json -------------------------------------------------------------------------------- /tests/cpp-tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cpp-tests/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Classes/AppDelegate.h -------------------------------------------------------------------------------- /tests/cpp-tests/Classes/BaseTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Classes/BaseTest.cpp -------------------------------------------------------------------------------- /tests/cpp-tests/Classes/BaseTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Classes/BaseTest.h -------------------------------------------------------------------------------- /tests/cpp-tests/Classes/VisibleRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Classes/VisibleRect.h -------------------------------------------------------------------------------- /tests/cpp-tests/Classes/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Classes/controller.h -------------------------------------------------------------------------------- /tests/cpp-tests/Classes/precheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Classes/precheader.h -------------------------------------------------------------------------------- /tests/cpp-tests/Classes/testBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Classes/testBasic.h -------------------------------------------------------------------------------- /tests/cpp-tests/Classes/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Classes/tests.h -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/.gitignore: -------------------------------------------------------------------------------- 1 | #Do now ignore Marmalade icf files 2 | !*.icf 3 | -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Resources/Hello.png -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Misc/resources-hd/test4.txt: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Misc/resources-ipad/test2.txt: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Misc/resources-ipadhd/test1.txt: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Misc/resources-iphone/test6.txt: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Misc/resources-mac/test2.txt: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Misc/resources-machd/test1.txt: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Misc/resources-wide/test5.txt: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Misc/resources-widehd/test3.txt: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Misc/searchpath1/file1.txt: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Misc/searchpath2/resources-ipad/file2.txt: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/Test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Resources/Test.html -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Resources/cacert.pem -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/configs/ja-JP.lang.json: -------------------------------------------------------------------------------- 1 | { 2 | "Text Label": "テキストラベル" 3 | } -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/configs/zh-CN.lang.json: -------------------------------------------------------------------------------- 1 | { 2 | "Text Label": "文本标签" 3 | } -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/effect1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Resources/effect1.raw -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/effect1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Resources/effect1.wav -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/effect2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Resources/effect2.mp3 -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/effect2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Resources/effect2.ogg -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/music.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Resources/music.mid -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/zip/10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Resources/zip/10k.txt -------------------------------------------------------------------------------- /tests/cpp-tests/Resources/zip/10k.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/Resources/zip/10k.zip -------------------------------------------------------------------------------- /tests/cpp-tests/proj.android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/proj.android/gradlew -------------------------------------------------------------------------------- /tests/cpp-tests/proj.ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/proj.ios/Info.plist -------------------------------------------------------------------------------- /tests/cpp-tests/proj.ios/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/proj.ios/Prefix.pch -------------------------------------------------------------------------------- /tests/cpp-tests/proj.ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/proj.ios/main.m -------------------------------------------------------------------------------- /tests/cpp-tests/proj.linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/proj.linux/main.cpp -------------------------------------------------------------------------------- /tests/cpp-tests/proj.mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/proj.mac/Icon.icns -------------------------------------------------------------------------------- /tests/cpp-tests/proj.mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/proj.mac/Info.plist -------------------------------------------------------------------------------- /tests/cpp-tests/proj.mac/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/proj.mac/Prefix.pch -------------------------------------------------------------------------------- /tests/cpp-tests/proj.mac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /tests/cpp-tests/proj.mac/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/proj.mac/main.cpp -------------------------------------------------------------------------------- /tests/cpp-tests/proj.win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/proj.win32/main.cpp -------------------------------------------------------------------------------- /tests/cpp-tests/proj.win32/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/cpp-tests/proj.win32/main.h -------------------------------------------------------------------------------- /tests/lua-empty-test/project/proj.mac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /tests/lua-empty-test/res/.gitignore: -------------------------------------------------------------------------------- 1 | #Do now ignore Marmalade icf files 2 | !*.icf 3 | -------------------------------------------------------------------------------- /tests/lua-empty-test/res/crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-empty-test/res/crop.png -------------------------------------------------------------------------------- /tests/lua-empty-test/res/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-empty-test/res/dog.png -------------------------------------------------------------------------------- /tests/lua-empty-test/res/effect1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-empty-test/res/effect1.wav -------------------------------------------------------------------------------- /tests/lua-empty-test/res/farm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-empty-test/res/farm.jpg -------------------------------------------------------------------------------- /tests/lua-empty-test/res/land.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-empty-test/res/land.png -------------------------------------------------------------------------------- /tests/lua-empty-test/res/menu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-empty-test/res/menu1.png -------------------------------------------------------------------------------- /tests/lua-empty-test/res/menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-empty-test/res/menu2.png -------------------------------------------------------------------------------- /tests/lua-empty-test/src/hello.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-empty-test/src/hello.lua -------------------------------------------------------------------------------- /tests/lua-empty-test/src/hello2.lua: -------------------------------------------------------------------------------- 1 | function myadd(x, y) 2 | return x + y 3 | end -------------------------------------------------------------------------------- /tests/lua-empty-test/src/mobdebug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-empty-test/src/mobdebug.lua -------------------------------------------------------------------------------- /tests/lua-tests/.cocos-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-tests/.cocos-project.json -------------------------------------------------------------------------------- /tests/lua-tests/project/proj.android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /jniLibs 3 | -------------------------------------------------------------------------------- /tests/lua-tests/project/proj.ios_mac/mac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /tests/lua-tests/src/LuaLoaderTest/in_dir/init.lua: -------------------------------------------------------------------------------- 1 | return true 2 | -------------------------------------------------------------------------------- /tests/lua-tests/src/LuaLoaderTest/simple.lua: -------------------------------------------------------------------------------- 1 | return true 2 | -------------------------------------------------------------------------------- /tests/lua-tests/src/LuaLoaderTest/strange_ext.lc: -------------------------------------------------------------------------------- 1 | return true 2 | -------------------------------------------------------------------------------- /tests/lua-tests/src/VisibleRect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-tests/src/VisibleRect.lua -------------------------------------------------------------------------------- /tests/lua-tests/src/controller.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-tests/src/controller.lua -------------------------------------------------------------------------------- /tests/lua-tests/src/helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-tests/src/helper.lua -------------------------------------------------------------------------------- /tests/lua-tests/src/mainMenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-tests/src/mainMenu.lua -------------------------------------------------------------------------------- /tests/lua-tests/src/testResource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tests/lua-tests/src/testResource.lua -------------------------------------------------------------------------------- /tools/appveyor-scripts/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/appveyor-scripts/build.ps1 -------------------------------------------------------------------------------- /tools/appveyor-scripts/git_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/appveyor-scripts/git_retry.py -------------------------------------------------------------------------------- /tools/coding-style/include-linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/coding-style/include-linter.py -------------------------------------------------------------------------------- /tools/coding-style/tailing-spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/coding-style/tailing-spaces.py -------------------------------------------------------------------------------- /tools/jenkins-scripts/daily-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/jenkins-scripts/daily-build.py -------------------------------------------------------------------------------- /tools/jenkins-scripts/utils/reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/jenkins-scripts/utils/reboot.py -------------------------------------------------------------------------------- /tools/make-package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/make-package/Makefile -------------------------------------------------------------------------------- /tools/make-package/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/make-package/README.markdown -------------------------------------------------------------------------------- /tools/make-package/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/make-package/config.json -------------------------------------------------------------------------------- /tools/make-package/git-archive-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/make-package/git-archive-all -------------------------------------------------------------------------------- /tools/missing-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/missing-tools.txt -------------------------------------------------------------------------------- /tools/performance-analyze/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/performance-analyze/README.md -------------------------------------------------------------------------------- /tools/release/generate_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/release/generate_docs.sh -------------------------------------------------------------------------------- /tools/tolua/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/README.mdown -------------------------------------------------------------------------------- /tools/tolua/cocos2dx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_3d.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_3d.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_audioengine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_audioengine.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_backend.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_backend.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_controller.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_controller.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_csloader.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_csloader.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_extension.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_extension.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_navmesh.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_navmesh.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_physics.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_physics.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_physics3d.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_physics3d.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_spine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_spine.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_studio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_studio.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_ui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_ui.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_video.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_video.ini -------------------------------------------------------------------------------- /tools/tolua/cocos2dx_webview.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/cocos2dx_webview.ini -------------------------------------------------------------------------------- /tools/tolua/genbindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/tolua/genbindings.py -------------------------------------------------------------------------------- /tools/travis-scripts/config.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/travis-scripts/config.gitignore -------------------------------------------------------------------------------- /tools/travis-scripts/run-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos2d/cocos2d-x/HEAD/tools/travis-scripts/run-script.sh --------------------------------------------------------------------------------