├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── auto-build-src.bat ├── auto-build.bat ├── cocos ├── 2d │ ├── CCFontAtlas.cpp │ ├── CCFontAtlas.h │ ├── CCFontFreetype.cpp │ ├── CCFontFreetype.h │ ├── CCLabelLayout.cpp │ ├── CCLabelLayout.h │ ├── CCTTFLabelAtlasCache.cpp │ ├── CCTTFLabelAtlasCache.h │ ├── CCTTFLabelRenderer.cpp │ ├── CCTTFLabelRenderer.h │ ├── CCTTFTypes.cpp │ └── CCTTFTypes.h ├── Android.mk ├── audio │ ├── AudioEngine.cpp │ ├── android │ │ ├── Android.mk │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ ├── openharmony │ │ ├── PcmAudioService.cpp │ │ ├── PcmAudioService.h │ │ ├── UrlAudioPlayer.cpp │ │ └── UrlAudioPlayer.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 ├── base │ ├── CCAutoreleasePool.cpp │ ├── CCAutoreleasePool.h │ ├── CCConfiguration.cpp │ ├── CCConfiguration.h │ ├── CCData.cpp │ ├── CCData.h │ ├── CCGLUtils.cpp │ ├── CCGLUtils.h │ ├── CCLog.cpp │ ├── CCLog.h │ ├── CCMap.h │ ├── CCRef.cpp │ ├── CCRef.h │ ├── CCRefPtr.h │ ├── CCRenderTexture.cpp │ ├── CCRenderTexture.h │ ├── CCScheduler.cpp │ ├── CCScheduler.h │ ├── CCThreadPool.cpp │ ├── CCThreadPool.h │ ├── CCValue.cpp │ ├── CCValue.h │ ├── CCVector.h │ ├── TGAlib.cpp │ ├── TGAlib.h │ ├── ZipUtils.cpp │ ├── ZipUtils.h │ ├── astc.cpp │ ├── astc.h │ ├── base64.cpp │ ├── base64.h │ ├── ccCArray.cpp │ ├── ccCArray.h │ ├── ccConfig.h │ ├── ccMacros.h │ ├── ccRandom.cpp │ ├── ccRandom.h │ ├── ccTypes.cpp │ ├── ccTypes.h │ ├── ccUTF8.cpp │ ├── ccUTF8.h │ ├── ccUtils.cpp │ ├── ccUtils.h │ ├── csscolorparser.cpp │ ├── csscolorparser.hpp │ ├── etc1.cpp │ ├── etc1.h │ ├── etc2.cpp │ ├── etc2.h │ ├── pvr.cpp │ ├── pvr.h │ ├── uthash.h │ └── utlist.h ├── cocos2d.cpp ├── cocos2d.h ├── editor-support │ ├── Android.mk │ ├── IOBuffer.cpp │ ├── IOBuffer.h │ ├── IOTypedArray.cpp │ ├── IOTypedArray.h │ ├── MeshBuffer.cpp │ ├── MeshBuffer.h │ ├── MiddlewareMacro.h │ ├── MiddlewareManager.cpp │ ├── MiddlewareManager.h │ ├── TypedArrayPool.cpp │ ├── TypedArrayPool.h │ ├── dragonbones-creator-support │ │ ├── ArmatureCache.cpp │ │ ├── ArmatureCache.h │ │ ├── ArmatureCacheMgr.cpp │ │ ├── ArmatureCacheMgr.h │ │ ├── AttachUtil.cpp │ │ ├── AttachUtil.h │ │ ├── CCArmatureCacheDisplay.cpp │ │ ├── CCArmatureCacheDisplay.h │ │ ├── CCArmatureDisplay.cpp │ │ ├── CCArmatureDisplay.h │ │ ├── CCDragonBonesHeaders.h │ │ ├── CCFactory.cpp │ │ ├── CCFactory.h │ │ ├── CCSlot.cpp │ │ ├── CCSlot.h │ │ ├── CCTextureAtlasData.cpp │ │ └── CCTextureAtlasData.h │ ├── dragonbones │ │ ├── DragonBonesHeaders.h │ │ ├── animation │ │ │ ├── Animation.cpp │ │ │ ├── Animation.h │ │ │ ├── AnimationState.cpp │ │ │ ├── AnimationState.h │ │ │ ├── BaseTimelineState.cpp │ │ │ ├── BaseTimelineState.h │ │ │ ├── IAnimatable.h │ │ │ ├── TimelineState.cpp │ │ │ ├── TimelineState.h │ │ │ ├── WorldClock.cpp │ │ │ └── WorldClock.h │ │ ├── armature │ │ │ ├── Armature.cpp │ │ │ ├── Armature.h │ │ │ ├── Bone.cpp │ │ │ ├── Bone.h │ │ │ ├── Constraint.cpp │ │ │ ├── Constraint.h │ │ │ ├── DeformVertices.cpp │ │ │ ├── DeformVertices.h │ │ │ ├── IArmatureProxy.h │ │ │ ├── Slot.cpp │ │ │ ├── Slot.h │ │ │ ├── TransformObject.cpp │ │ │ └── TransformObject.h │ │ ├── core │ │ │ ├── BaseObject.cpp │ │ │ ├── BaseObject.h │ │ │ ├── DragonBones.cpp │ │ │ └── DragonBones.h │ │ ├── event │ │ │ ├── EventObject.cpp │ │ │ ├── EventObject.h │ │ │ └── IEventDispatcher.h │ │ ├── factory │ │ │ ├── BaseFactory.cpp │ │ │ └── BaseFactory.h │ │ ├── geom │ │ │ ├── ColorTransform.h │ │ │ ├── Matrix.h │ │ │ ├── Point.cpp │ │ │ ├── Point.h │ │ │ ├── Rectangle.h │ │ │ ├── Transform.cpp │ │ │ └── Transform.h │ │ ├── model │ │ │ ├── AnimationConfig.cpp │ │ │ ├── AnimationConfig.h │ │ │ ├── AnimationData.cpp │ │ │ ├── AnimationData.h │ │ │ ├── ArmatureData.cpp │ │ │ ├── ArmatureData.h │ │ │ ├── BoundingBoxData.cpp │ │ │ ├── BoundingBoxData.h │ │ │ ├── CanvasData.cpp │ │ │ ├── CanvasData.h │ │ │ ├── ConstraintData.cpp │ │ │ ├── ConstraintData.h │ │ │ ├── DisplayData.cpp │ │ │ ├── DisplayData.h │ │ │ ├── DragonBonesData.cpp │ │ │ ├── DragonBonesData.h │ │ │ ├── SkinData.cpp │ │ │ ├── SkinData.h │ │ │ ├── TextureAtlasData.cpp │ │ │ ├── TextureAtlasData.h │ │ │ ├── UserData.cpp │ │ │ └── UserData.h │ │ └── parser │ │ │ ├── BinaryDataParser.cpp │ │ │ ├── BinaryDataParser.h │ │ │ ├── DataParser.cpp │ │ │ ├── DataParser.h │ │ │ ├── JSONDataParser.cpp │ │ │ └── JSONDataParser.h │ ├── middleware-adapter.cpp │ ├── middleware-adapter.h │ ├── particle │ │ ├── ParticleSimulator.cpp │ │ └── ParticleSimulator.h │ ├── spine-creator-support │ │ ├── AttachUtil.cpp │ │ ├── AttachUtil.h │ │ ├── AttachmentVertices.cpp │ │ ├── AttachmentVertices.h │ │ ├── SkeletonAnimation.cpp │ │ ├── SkeletonAnimation.h │ │ ├── SkeletonCache.cpp │ │ ├── SkeletonCache.h │ │ ├── SkeletonCacheAnimation.cpp │ │ ├── SkeletonCacheAnimation.h │ │ ├── SkeletonCacheMgr.cpp │ │ ├── SkeletonCacheMgr.h │ │ ├── SkeletonDataMgr.cpp │ │ ├── SkeletonDataMgr.h │ │ ├── SkeletonRenderer.cpp │ │ ├── SkeletonRenderer.h │ │ ├── VertexEffectDelegate.cpp │ │ ├── VertexEffectDelegate.h │ │ ├── spine-cocos2dx.cpp │ │ └── spine-cocos2dx.h │ └── 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 │ │ ├── BlendMode.h │ │ ├── Bone.cpp │ │ ├── Bone.h │ │ ├── BoneData.cpp │ │ ├── BoneData.h │ │ ├── BoundingBoxAttachment.cpp │ │ ├── BoundingBoxAttachment.h │ │ ├── ClippingAttachment.cpp │ │ ├── ClippingAttachment.h │ │ ├── Color.h │ │ ├── ColorTimeline.cpp │ │ ├── ColorTimeline.h │ │ ├── Constraint.cpp │ │ ├── Constraint.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 │ │ ├── SkeletonBinary.cpp │ │ ├── SkeletonBinary.h │ │ ├── SkeletonBounds.cpp │ │ ├── SkeletonBounds.h │ │ ├── SkeletonClipping.cpp │ │ ├── SkeletonClipping.h │ │ ├── SkeletonData.cpp │ │ ├── SkeletonData.h │ │ ├── SkeletonJson.cpp │ │ ├── SkeletonJson.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.h ├── math │ ├── CCGeometry.cpp │ ├── CCGeometry.h │ ├── CCMath.h │ ├── CCMathBase.h │ ├── CCVertex.cpp │ ├── CCVertex.h │ ├── Mat3.cpp │ ├── Mat3.hpp │ ├── Mat4.cpp │ ├── Mat4.h │ ├── Mat4.inl │ ├── MathUtil.cpp │ ├── MathUtil.h │ ├── MathUtil.inl │ ├── MathUtilNeon.inl │ ├── MathUtilNeon64.inl │ ├── MathUtilSSE.inl │ ├── Quaternion.cpp │ ├── Quaternion.h │ ├── Quaternion.inl │ ├── Vec2.cpp │ ├── Vec2.h │ ├── Vec2.inl │ ├── Vec3.cpp │ ├── Vec3.h │ ├── Vec3.inl │ ├── Vec4.cpp │ ├── Vec4.h │ └── Vec4.inl ├── network │ ├── CCDownloader-android.cpp │ ├── CCDownloader-android.h │ ├── CCDownloader-curl.cpp │ ├── CCDownloader-curl.h │ ├── CCDownloader.cpp │ ├── CCDownloader.h │ ├── CCDownloaderImpl-apple.h │ ├── CCDownloaderImpl-apple.mm │ ├── CCIDownloaderImpl.h │ ├── 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-apple.mm │ ├── WebSocket-libwebsockets.cpp │ ├── WebSocket.h │ ├── WebSocketServer.cpp │ └── WebSocketServer.h ├── platform │ ├── CCApplication.h │ ├── CCCanvasRenderingContext2D.h │ ├── CCDevice.h │ ├── CCFileUtils.cpp │ ├── CCFileUtils.h │ ├── CCGL.h │ ├── CCImage.cpp │ ├── CCImage.h │ ├── CCPlatformConfig.h │ ├── CCPlatformDefine.h │ ├── CCSAXParser.cpp │ ├── CCSAXParser.h │ ├── CCStdC.h │ ├── android │ │ ├── Android.mk │ │ ├── CCApplication-android.cpp │ │ ├── CCCanvasRenderingContext2D-android.cpp │ │ ├── CCDevice-android.cpp │ │ ├── CCFileUtils-android.cpp │ │ ├── CCFileUtils-android.h │ │ ├── CCGL-android.h │ │ ├── CCPlatformDefine-android.h │ │ ├── java │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.xml │ │ │ ├── libs │ │ │ │ ├── com.android.vending.expansion.zipfile.jar │ │ │ │ ├── okhttp-3.12.14.jar │ │ │ │ └── okio-1.15.0.jar │ │ │ ├── proguard-project.txt │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ └── .gitignore │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── lib │ │ │ │ ├── CanvasRenderingContext2DImpl.java │ │ │ │ ├── Cocos2dxAccelerometer.java │ │ │ │ ├── Cocos2dxActivity.java │ │ │ │ ├── Cocos2dxAudioFocusManager.java │ │ │ │ ├── Cocos2dxDownloader.java │ │ │ │ ├── Cocos2dxEditBox.java │ │ │ │ ├── Cocos2dxGLSurfaceView.java │ │ │ │ ├── Cocos2dxHandler.java │ │ │ │ ├── Cocos2dxHelper.java │ │ │ │ ├── Cocos2dxHttpURLConnection.java │ │ │ │ ├── Cocos2dxJavascriptJavaBridge.java │ │ │ │ ├── Cocos2dxLocalStorage.java │ │ │ │ ├── Cocos2dxOrientationHelper.java │ │ │ │ ├── Cocos2dxReflectionHelper.java │ │ │ │ ├── Cocos2dxRenderer.java │ │ │ │ ├── Cocos2dxTypefaces.java │ │ │ │ ├── Cocos2dxVideoHelper.java │ │ │ │ ├── Cocos2dxVideoView.java │ │ │ │ ├── Cocos2dxWebView.java │ │ │ │ ├── Cocos2dxWebViewHelper.java │ │ │ │ └── Utils.java │ │ ├── jni │ │ │ ├── JniHelper.cpp │ │ │ ├── JniHelper.h │ │ │ ├── JniImp.cpp │ │ │ └── JniImp.h │ │ └── libcocos2dx │ │ │ ├── .gitignore │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ └── values │ │ │ └── strings.xml │ ├── apple │ │ ├── CCCanvasRenderingContext2D-apple.mm │ │ ├── CCDevice-apple.h │ │ ├── CCDevice-apple.mm │ │ ├── CCFileUtils-apple.h │ │ └── CCFileUtils-apple.mm │ ├── desktop │ │ ├── CCGLView-desktop.cpp │ │ └── CCGLView-desktop.h │ ├── ios │ │ ├── CCApplication-ios.mm │ │ ├── CCDevice-ios.mm │ │ ├── CCEAGLView-ios.h │ │ ├── CCEAGLView-ios.mm │ │ ├── CCGL-ios.h │ │ ├── CCImage-ios.mm │ │ ├── CCModuleConfigIOS.debug.xcconfig │ │ ├── CCModuleConfigIOS.release.xcconfig │ │ ├── CCPlatformDefine-ios.h │ │ ├── CCReachability.cpp │ │ ├── CCReachability.h │ │ ├── OpenGL_Internal-ios.h │ │ └── cocos2d-prefix.pch │ ├── mac │ │ ├── CCApplication-mac.mm │ │ ├── CCDevice-mac.mm │ │ ├── CCGL-mac.h │ │ ├── CCModuleConfigMac.debug.xcconfig │ │ ├── CCModuleConfigMac.release.xcconfig │ │ ├── CCPlatformDefine-mac.h │ │ └── cocos2d-prefix.pch │ ├── openharmony │ │ ├── CCDevice-openharmony.cpp │ │ ├── CCDevice-openharmonySensor.cpp │ │ ├── CCGL-openharmony.h │ │ ├── CCPlatformDefine-openharmony.h │ │ ├── FileUtils-openharmony.cpp │ │ ├── FileUtils-openharmony.h │ │ ├── OpenHarmonyPlatform.cpp │ │ ├── OpenHarmonyPlatform.h │ │ ├── WorkerMessageQueue.cpp │ │ ├── WorkerMessageQueue.h │ │ ├── modules │ │ │ ├── CCApplication-openharmony.cpp │ │ │ └── CCCanvasRenderingContext2D-openharmony.cpp │ │ ├── napi │ │ │ ├── NapiHelper.cpp │ │ │ ├── NapiHelper.h │ │ │ ├── NapiInit.cpp │ │ │ ├── NapiValueConverter.cpp │ │ │ ├── NapiValueConverter.h │ │ │ ├── napi-inl.h │ │ │ ├── napi.h │ │ │ └── native_common.h │ │ └── render │ │ │ ├── egl_core.cpp │ │ │ └── egl_core.h │ └── win32 │ │ ├── CCApplication-win32.cpp │ │ ├── CCCanvasRenderingContext2D-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 ├── renderer │ ├── Macro.h │ ├── Types.cpp │ ├── Types.h │ ├── gfx │ │ ├── DeviceGraphics.cpp │ │ ├── DeviceGraphics.h │ │ ├── FrameBuffer.cpp │ │ ├── FrameBuffer.h │ │ ├── GFX.cpp │ │ ├── GFX.h │ │ ├── GFXUtils.cpp │ │ ├── GFXUtils.h │ │ ├── GraphicsHandle.cpp │ │ ├── GraphicsHandle.h │ │ ├── IndexBuffer.cpp │ │ ├── IndexBuffer.h │ │ ├── Program.cpp │ │ ├── Program.h │ │ ├── RenderBuffer.cpp │ │ ├── RenderBuffer.h │ │ ├── RenderTarget.cpp │ │ ├── RenderTarget.h │ │ ├── State.cpp │ │ ├── State.h │ │ ├── Texture.cpp │ │ ├── Texture.h │ │ ├── Texture2D.cpp │ │ ├── Texture2D.h │ │ ├── VertexBuffer.cpp │ │ ├── VertexBuffer.h │ │ ├── VertexFormat.cpp │ │ └── VertexFormat.h │ ├── memop │ │ └── RecyclePool.hpp │ ├── renderer │ │ ├── BaseRenderer.cpp │ │ ├── BaseRenderer.h │ │ ├── Camera.cpp │ │ ├── Camera.h │ │ ├── Config.cpp │ │ ├── Config.h │ │ ├── Effect.cpp │ │ ├── Effect.h │ │ ├── EffectBase.cpp │ │ ├── EffectBase.h │ │ ├── EffectVariant.cpp │ │ ├── EffectVariant.hpp │ │ ├── ForwardRenderer.cpp │ │ ├── ForwardRenderer.h │ │ ├── INode.h │ │ ├── InputAssembler.cpp │ │ ├── InputAssembler.h │ │ ├── Light.cpp │ │ ├── Light.h │ │ ├── Model.cpp │ │ ├── Model.h │ │ ├── Pass.cpp │ │ ├── Pass.h │ │ ├── ProgramLib.cpp │ │ ├── ProgramLib.h │ │ ├── Renderer.h │ │ ├── RendererUtils.cpp │ │ ├── RendererUtils.h │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── Technique.cpp │ │ ├── Technique.h │ │ ├── View.cpp │ │ └── View.h │ └── scene │ │ ├── MemPool.cpp │ │ ├── MemPool.hpp │ │ ├── MeshBuffer.cpp │ │ ├── MeshBuffer.hpp │ │ ├── ModelBatcher.cpp │ │ ├── ModelBatcher.hpp │ │ ├── NodeMemPool.cpp │ │ ├── NodeMemPool.hpp │ │ ├── NodeProxy.cpp │ │ ├── NodeProxy.hpp │ │ ├── ParallelTask.cpp │ │ ├── ParallelTask.hpp │ │ ├── RenderFlow.cpp │ │ ├── RenderFlow.hpp │ │ ├── StencilManager.cpp │ │ ├── StencilManager.hpp │ │ ├── assembler │ │ ├── Assembler.cpp │ │ ├── Assembler.hpp │ │ ├── AssemblerBase.cpp │ │ ├── AssemblerBase.hpp │ │ ├── AssemblerSprite.cpp │ │ ├── AssemblerSprite.hpp │ │ ├── CustomAssembler.cpp │ │ ├── CustomAssembler.hpp │ │ ├── MaskAssembler.cpp │ │ ├── MaskAssembler.hpp │ │ ├── MeshAssembler.cpp │ │ ├── MeshAssembler.hpp │ │ ├── Particle3DAssembler.cpp │ │ ├── Particle3DAssembler.hpp │ │ ├── RenderData.cpp │ │ ├── RenderData.hpp │ │ ├── RenderDataList.cpp │ │ ├── RenderDataList.hpp │ │ ├── SimpleSprite2D.cpp │ │ ├── SimpleSprite2D.hpp │ │ ├── SimpleSprite3D.cpp │ │ ├── SimpleSprite3D.hpp │ │ ├── SlicedSprite2D.cpp │ │ ├── SlicedSprite2D.hpp │ │ ├── SlicedSprite3D.cpp │ │ ├── SlicedSprite3D.hpp │ │ ├── TiledMapAssembler.cpp │ │ └── TiledMapAssembler.hpp │ │ └── scene-bindings.h ├── scripting │ └── js-bindings │ │ ├── .gitignore │ │ ├── auto │ │ ├── api │ │ │ ├── jsb_cocos2dx_audioengine_auto_api.js │ │ │ ├── jsb_cocos2dx_auto_api.js │ │ │ ├── jsb_cocos2dx_dragonbones_auto_api.js │ │ │ ├── jsb_cocos2dx_editor_support_auto_api.js │ │ │ ├── jsb_cocos2dx_extension_auto_api.js │ │ │ ├── jsb_cocos2dx_network_auto_api.js │ │ │ ├── jsb_cocos2dx_particle_auto_api.js │ │ │ ├── jsb_cocos2dx_spine_auto_api.js │ │ │ ├── jsb_gfx_auto_api.js │ │ │ ├── jsb_renderer_auto_api.js │ │ │ ├── jsb_video_auto_api.js │ │ │ └── jsb_webview_auto_api.js │ │ ├── jsb_cocos2dx_audioengine_auto.cpp │ │ ├── jsb_cocos2dx_audioengine_auto.hpp │ │ ├── jsb_cocos2dx_auto.cpp │ │ ├── jsb_cocos2dx_auto.hpp │ │ ├── jsb_cocos2dx_dragonbones_auto.cpp │ │ ├── jsb_cocos2dx_dragonbones_auto.hpp │ │ ├── jsb_cocos2dx_editor_support_auto.cpp │ │ ├── jsb_cocos2dx_editor_support_auto.hpp │ │ ├── jsb_cocos2dx_extension_auto.cpp │ │ ├── jsb_cocos2dx_extension_auto.hpp │ │ ├── jsb_cocos2dx_network_auto.cpp │ │ ├── jsb_cocos2dx_network_auto.hpp │ │ ├── jsb_cocos2dx_particle_auto.cpp │ │ ├── jsb_cocos2dx_particle_auto.hpp │ │ ├── jsb_cocos2dx_spine_auto.cpp │ │ ├── jsb_cocos2dx_spine_auto.hpp │ │ ├── jsb_gfx_auto.cpp │ │ ├── jsb_gfx_auto.hpp │ │ ├── jsb_renderer_auto.cpp │ │ ├── jsb_renderer_auto.hpp │ │ ├── jsb_video_auto.cpp │ │ ├── jsb_video_auto.hpp │ │ ├── jsb_webview_auto.cpp │ │ └── jsb_webview_auto.hpp │ │ ├── docs │ │ ├── JSB2.0-Architecture.png │ │ ├── JSB2.0-learning-en.md │ │ ├── JSB2.0-learning-zh.md │ │ ├── jsc-breakpoint.png │ │ ├── jsc-entitlements-check.png │ │ ├── jsc-entitlements.png │ │ ├── jsc-mac-debug.png │ │ ├── jsc-mac-simulator-sign.png │ │ ├── jsc-security-key.png │ │ ├── jsc-timeline.png │ │ ├── v8-win32-debug.jpg │ │ ├── v8-win32-memory.jpg │ │ └── v8-win32-profile.jpg │ │ ├── event │ │ ├── CustomEventTypes.h │ │ ├── EventDispatcher.cpp │ │ └── EventDispatcher.h │ │ ├── jswrapper │ │ ├── HandleObject.cpp │ │ ├── HandleObject.hpp │ │ ├── MappingUtils.cpp │ │ ├── MappingUtils.hpp │ │ ├── Object.hpp │ │ ├── RefCounter.cpp │ │ ├── RefCounter.hpp │ │ ├── SeApi.h │ │ ├── State.cpp │ │ ├── State.hpp │ │ ├── Value.cpp │ │ ├── Value.hpp │ │ ├── chakracore │ │ │ ├── Base.h │ │ │ ├── Class.cpp │ │ │ ├── Class.hpp │ │ │ ├── HelperMacros.h │ │ │ ├── Object.cpp │ │ │ ├── Object.hpp │ │ │ ├── ScriptEngine.cpp │ │ │ ├── ScriptEngine.hpp │ │ │ ├── SeApi.h │ │ │ ├── Utils.cpp │ │ │ └── Utils.hpp │ │ ├── config.cpp │ │ ├── config.hpp │ │ ├── jsc │ │ │ ├── Base.h │ │ │ ├── Class.cpp │ │ │ ├── Class.hpp │ │ │ ├── EJConvert.h │ │ │ ├── EJConvert.m │ │ │ ├── EJConvertTypedArray.h │ │ │ ├── EJConvertTypedArray.m │ │ │ ├── HelperMacros.h │ │ │ ├── Object.hpp │ │ │ ├── Object.mm │ │ │ ├── PlatformUtils.h │ │ │ ├── PlatformUtils.mm │ │ │ ├── ScriptEngine.hpp │ │ │ ├── ScriptEngine.mm │ │ │ ├── SeApi.h │ │ │ ├── Utils.cpp │ │ │ └── Utils.hpp │ │ ├── jsvm │ │ │ ├── Class.cpp │ │ │ ├── Class.h │ │ │ ├── CommonHeader.h │ │ │ ├── HelperMacros.cpp │ │ │ ├── HelperMacros.h │ │ │ ├── Object.cpp │ │ │ ├── Object.h │ │ │ ├── ScriptEngine.cpp │ │ │ ├── ScriptEngine.h │ │ │ ├── SeApi.h │ │ │ ├── Utils.cpp │ │ │ └── Utils.h │ │ ├── napi │ │ │ ├── Class.cpp │ │ │ ├── Class.h │ │ │ ├── CommonHeader.h │ │ │ ├── HelperMacros.cpp │ │ │ ├── HelperMacros.h │ │ │ ├── Object.cpp │ │ │ ├── Object.h │ │ │ ├── ScriptEngine.cpp │ │ │ ├── ScriptEngine.h │ │ │ ├── SeApi.h │ │ │ ├── Utils.cpp │ │ │ └── Utils.h │ │ ├── sm │ │ │ ├── Base.h │ │ │ ├── Class.cpp │ │ │ ├── Class.hpp │ │ │ ├── HelperMacros.h │ │ │ ├── Object.cpp │ │ │ ├── Object.hpp │ │ │ ├── ScriptEngine.cpp │ │ │ ├── ScriptEngine.hpp │ │ │ ├── SeApi.h │ │ │ ├── Utils.cpp │ │ │ └── Utils.hpp │ │ └── v8 │ │ │ ├── Base.h │ │ │ ├── Class.cpp │ │ │ ├── Class.hpp │ │ │ ├── HelperMacros.h │ │ │ ├── Object.cpp │ │ │ ├── Object.hpp │ │ │ ├── ObjectWrap.cpp │ │ │ ├── ObjectWrap.h │ │ │ ├── README.md │ │ │ ├── ScriptEngine.cpp │ │ │ ├── ScriptEngine.hpp │ │ │ ├── SeApi.h │ │ │ ├── Utils.cpp │ │ │ ├── Utils.hpp │ │ │ └── debugger │ │ │ ├── SHA1.cpp │ │ │ ├── SHA1.h │ │ │ ├── base64.h │ │ │ ├── env.cc │ │ │ ├── env.h │ │ │ ├── http_parser.c │ │ │ ├── http_parser.h │ │ │ ├── inspector_agent.cc │ │ │ ├── inspector_agent.h │ │ │ ├── inspector_io.cc │ │ │ ├── inspector_io.h │ │ │ ├── inspector_socket.cc │ │ │ ├── inspector_socket.h │ │ │ ├── inspector_socket_server.cc │ │ │ ├── inspector_socket_server.h │ │ │ ├── node.cc │ │ │ ├── node.h │ │ │ ├── node_debug_options.cc │ │ │ ├── node_debug_options.h │ │ │ ├── node_mutex.h │ │ │ ├── util-inl.h │ │ │ ├── util.cc │ │ │ ├── util.h │ │ │ └── v8_inspector_protocol_json.h │ │ └── manual │ │ ├── JavaScriptArkTsBridge.cpp │ │ ├── JavaScriptArkTsBridge.h │ │ ├── JavaScriptJavaBridge.cpp │ │ ├── JavaScriptJavaBridge.h │ │ ├── JavaScriptObjCBridge.h │ │ ├── JavaScriptObjCBridge.mm │ │ ├── jsb_classtype.cpp │ │ ├── jsb_classtype.hpp │ │ ├── jsb_cocos2dx_extension_manual.cpp │ │ ├── jsb_cocos2dx_extension_manual.hpp │ │ ├── jsb_cocos2dx_manual.cpp │ │ ├── jsb_cocos2dx_manual.hpp │ │ ├── jsb_cocos2dx_network_manual.cpp │ │ ├── jsb_cocos2dx_network_manual.h │ │ ├── jsb_conversions.cpp │ │ ├── jsb_conversions.hpp │ │ ├── jsb_dragonbones_manual.cpp │ │ ├── jsb_dragonbones_manual.hpp │ │ ├── jsb_gfx_manual.cpp │ │ ├── jsb_gfx_manual.hpp │ │ ├── jsb_global.cpp │ │ ├── jsb_global.h │ │ ├── jsb_helper.cpp │ │ ├── jsb_helper.hpp │ │ ├── jsb_module_register.cpp │ │ ├── jsb_module_register.hpp │ │ ├── jsb_node.cpp │ │ ├── jsb_node.hpp │ │ ├── jsb_opengl_manual.cpp │ │ ├── jsb_opengl_manual.hpp │ │ ├── jsb_opengl_utils.cpp │ │ ├── jsb_opengl_utils.hpp │ │ ├── jsb_platform.h │ │ ├── jsb_platform_android.cpp │ │ ├── jsb_platform_openharmony.cpp │ │ ├── jsb_platfrom_apple.mm │ │ ├── jsb_platfrom_win32.cpp │ │ ├── jsb_renderer_manual.cpp │ │ ├── jsb_renderer_manual.hpp │ │ ├── jsb_socketio.cpp │ │ ├── jsb_socketio.hpp │ │ ├── jsb_spine_manual.cpp │ │ ├── jsb_spine_manual.hpp │ │ ├── jsb_websocket.cpp │ │ ├── jsb_websocket.hpp │ │ ├── jsb_websocket_server.cpp │ │ ├── jsb_websocket_server.hpp │ │ ├── jsb_xmlhttprequest.cpp │ │ └── jsb_xmlhttprequest.hpp ├── storage │ └── local-storage │ │ ├── LocalStorage-android.cpp │ │ ├── LocalStorage.cpp │ │ └── LocalStorage.h └── ui │ ├── edit-box │ ├── EditBox-android.cpp │ ├── EditBox-ios.mm │ ├── EditBox-mac.mm │ ├── EditBox-openharmony.cpp │ ├── EditBox-openharmony.h │ ├── EditBox-win32.cpp │ └── EditBox.h │ ├── videoplayer │ ├── VideoPlayer-android.cpp │ ├── VideoPlayer-ios.mm │ ├── VideoPlayer-openharmony.cpp │ ├── VideoPlayer-openharmony.h │ └── VideoPlayer.h │ └── webview │ ├── WebView-inl.h │ ├── WebView.h │ ├── WebViewImpl-android.cpp │ ├── WebViewImpl-android.h │ ├── WebViewImpl-ios.h │ ├── WebViewImpl-ios.mm │ ├── WebViewImpl-openharmony.cpp │ └── WebViewImpl-openharmony.h ├── download-deps.py ├── extensions ├── Android.mk ├── ExtensionExport.h ├── ExtensionMacros.h ├── assets-manager │ ├── AssetsManagerEx.cpp │ ├── AssetsManagerEx.h │ ├── CCAsyncTaskPool.cpp │ ├── CCAsyncTaskPool.h │ ├── CCEventAssetsManagerEx.cpp │ ├── CCEventAssetsManagerEx.h │ ├── Manifest.cpp │ └── Manifest.h └── cocos-ext.h ├── external └── config.json ├── gulpfile.js ├── licenses ├── LICENSE_CCBReader.txt ├── LICENSE_CCControlExtension.txt ├── LICENSE_DragonBones.txt ├── LICENSE_SocketRocket.txt ├── LICENSE_SpiderMonkey.txt ├── LICENSE_chipmunk.txt ├── LICENSE_cocos2d-x.txt ├── LICENSE_cocosdenshion.txt ├── LICENSE_curl.txt ├── LICENSE_js.txt ├── LICENSE_libjpeg.txt ├── LICENSE_libpng.txt ├── LICENSE_libtiff.txt ├── LICENSE_libwebsockets.txt ├── LICENSE_libxml2.txt ├── LICENSE_llvm.txt ├── LICENSE_ogg_vorbis.txt ├── LICENSE_spine.txt ├── LICENSE_unicode.txt └── LICENSE_zlib.txt ├── package.json ├── setup.py ├── templates ├── cocos2dx_files.json ├── js-template-default │ ├── cocos-project-template.json │ ├── frameworks │ │ └── runtime-src │ │ │ ├── Classes │ │ │ ├── AppDelegate.cpp │ │ │ ├── AppDelegate.h │ │ │ └── NativeConfig.h │ │ │ ├── proj.android-studio │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Application.mk │ │ │ │ ├── proguard-rules.pro │ │ │ │ ├── project.properties │ │ │ │ └── src │ │ │ │ │ └── org │ │ │ │ │ └── cocos2dx │ │ │ │ │ └── javascript │ │ │ │ │ └── AppActivity.java │ │ │ ├── build-cfg.json │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── instantapp │ │ │ │ ├── .gitignore │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Application.mk │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── org │ │ │ │ │ └── cocos2dx │ │ │ │ │ └── javascript │ │ │ │ │ └── InstantAppActivity.java │ │ │ ├── jni │ │ │ │ ├── CocosAndroid.mk │ │ │ │ ├── CocosApplication.mk │ │ │ │ └── hellojavascript │ │ │ │ │ └── main.cpp │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── javascript │ │ │ │ ├── SDKWrapper.java │ │ │ │ └── service │ │ │ │ ├── SDKClass.java │ │ │ │ └── SDKInterface.java │ │ │ ├── proj.harmonyos-next │ │ │ ├── .gitignore │ │ │ ├── AppScope │ │ │ │ ├── app.json5 │ │ │ │ └── resources │ │ │ │ │ └── base │ │ │ │ │ ├── element │ │ │ │ │ └── string.json │ │ │ │ │ └── media │ │ │ │ │ └── app_icon.png │ │ │ ├── CMakeLists.txt │ │ │ ├── build-profile.json5 │ │ │ ├── entry │ │ │ │ ├── .gitignore │ │ │ │ ├── build-profile.json5 │ │ │ │ ├── hvigorfile.ts │ │ │ │ ├── oh-package.json5 │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── cpp │ │ │ │ │ ├── README.md │ │ │ │ │ └── types │ │ │ │ │ │ └── libcocos │ │ │ │ │ │ ├── index.d.ets │ │ │ │ │ │ └── oh-package.json5 │ │ │ │ │ ├── ets │ │ │ │ │ ├── cocos │ │ │ │ │ │ ├── WorkerManager.ets │ │ │ │ │ │ ├── game.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── sys-ability-polyfill.ets │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Constants.ets │ │ │ │ │ │ └── PortProxy.ets │ │ │ │ │ ├── components │ │ │ │ │ │ ├── CocosVideoPlayer.ets │ │ │ │ │ │ ├── CocosWebView.ets │ │ │ │ │ │ └── EditBoxDialog.ets │ │ │ │ │ ├── entryability │ │ │ │ │ │ └── EntryAbility.ets │ │ │ │ │ ├── pages │ │ │ │ │ │ └── index.ets │ │ │ │ │ └── workers │ │ │ │ │ │ └── cocos_worker.ets │ │ │ │ │ ├── module.json5 │ │ │ │ │ └── resources │ │ │ │ │ ├── base │ │ │ │ │ ├── element │ │ │ │ │ │ ├── color.json │ │ │ │ │ │ └── string.json │ │ │ │ │ ├── media │ │ │ │ │ │ └── icon.png │ │ │ │ │ └── profile │ │ │ │ │ │ └── main_pages.json │ │ │ │ │ └── rawfile │ │ │ │ │ └── .keep │ │ │ ├── hvigor │ │ │ │ └── hvigor-config.json5 │ │ │ ├── hvigorfile.ts │ │ │ └── oh-package.json5 │ │ │ ├── proj.ios_mac │ │ │ ├── HelloJavascript.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── ios │ │ │ │ ├── AppController.h │ │ │ │ ├── AppController.mm │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── 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 │ │ │ │ ├── LaunchScreenBackground.png │ │ │ │ ├── Prefix.pch │ │ │ │ ├── RootViewController.h │ │ │ │ ├── RootViewController.mm │ │ │ │ ├── SDKWrapper.h │ │ │ │ ├── SDKWrapper.m │ │ │ │ ├── UserConfigIOS.debug.xcconfig │ │ │ │ ├── UserConfigIOS.release.xcconfig │ │ │ │ ├── main.m │ │ │ │ ├── service │ │ │ │ │ └── SDKDelegate.h │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── Localizable.strings │ │ │ └── mac │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info.plist │ │ │ │ ├── Prefix.pch │ │ │ │ ├── UserConfigMac.debug.xcconfig │ │ │ │ ├── UserConfigMac.release.xcconfig │ │ │ │ └── main.cpp │ │ │ └── proj.win32 │ │ │ ├── HelloJavascript.sln │ │ │ ├── HelloJavascript.vcxproj │ │ │ ├── HelloJavascript.vcxproj.filters │ │ │ ├── HelloJavascript.vcxproj.user │ │ │ ├── build-cfg.json │ │ │ ├── game.rc │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ ├── res │ │ │ └── game.ico │ │ │ └── resource.h │ ├── main.js │ ├── project.json │ └── src │ │ ├── app.js │ │ └── resource.js └── js-template-link │ ├── cocos-project-template.json │ ├── frameworks │ └── runtime-src │ │ ├── Classes │ │ ├── AppDelegate.cpp │ │ ├── AppDelegate.h │ │ └── NativeConfig.h │ │ ├── proj.android-studio │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ ├── proguard-rules.pro │ │ │ ├── project.properties │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── javascript │ │ │ │ └── AppActivity.java │ │ ├── build-cfg.json │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── instantapp │ │ │ ├── .gitignore │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── javascript │ │ │ │ └── InstantAppActivity.java │ │ ├── jni │ │ │ ├── CocosAndroid.mk │ │ │ ├── CocosApplication.mk │ │ │ └── hellojavascript │ │ │ │ └── main.cpp │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── settings.gradle │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── javascript │ │ │ ├── SDKWrapper.java │ │ │ └── service │ │ │ ├── SDKClass.java │ │ │ └── SDKInterface.java │ │ ├── proj.harmonyos-next │ │ ├── .gitignore │ │ ├── AppScope │ │ │ ├── app.json5 │ │ │ └── resources │ │ │ │ └── base │ │ │ │ ├── element │ │ │ │ └── string.json │ │ │ │ └── media │ │ │ │ └── app_icon.png │ │ ├── CMakeLists.txt │ │ ├── build-profile.json5 │ │ ├── entry │ │ │ ├── .gitignore │ │ │ ├── build-profile.json5 │ │ │ ├── hvigorfile.ts │ │ │ ├── oh-package.json5 │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── cpp │ │ │ │ ├── README.md │ │ │ │ └── types │ │ │ │ │ └── libcocos │ │ │ │ │ ├── index.d.ets │ │ │ │ │ └── oh-package.json5 │ │ │ │ ├── ets │ │ │ │ ├── cocos │ │ │ │ │ ├── WorkerManager.ets │ │ │ │ │ ├── game.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── sys-ability-polyfill.ets │ │ │ │ ├── common │ │ │ │ │ ├── Constants.ets │ │ │ │ │ └── PortProxy.ets │ │ │ │ ├── components │ │ │ │ │ ├── CocosVideoPlayer.ets │ │ │ │ │ ├── CocosWebView.ets │ │ │ │ │ └── EditBoxDialog.ets │ │ │ │ ├── entryability │ │ │ │ │ └── EntryAbility.ets │ │ │ │ ├── pages │ │ │ │ │ └── index.ets │ │ │ │ └── workers │ │ │ │ │ └── cocos_worker.ets │ │ │ │ ├── module.json5 │ │ │ │ └── resources │ │ │ │ ├── base │ │ │ │ ├── element │ │ │ │ │ ├── color.json │ │ │ │ │ └── string.json │ │ │ │ ├── media │ │ │ │ │ └── icon.png │ │ │ │ └── profile │ │ │ │ │ └── main_pages.json │ │ │ │ └── rawfile │ │ │ │ └── .keep │ │ ├── hvigor │ │ │ └── hvigor-config.json5 │ │ ├── hvigorfile.ts │ │ └── oh-package.json5 │ │ ├── proj.ios_mac │ │ ├── HelloJavascript.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ios │ │ │ ├── AppController.h │ │ │ ├── AppController.mm │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Localizable.strings │ │ │ ├── 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 │ │ │ ├── LaunchScreenBackground.png │ │ │ ├── Prefix.pch │ │ │ ├── RootViewController.h │ │ │ ├── RootViewController.mm │ │ │ ├── SDKWrapper.h │ │ │ ├── SDKWrapper.m │ │ │ ├── UserConfigIOS.debug.xcconfig │ │ │ ├── UserConfigIOS.release.xcconfig │ │ │ ├── main.m │ │ │ ├── service │ │ │ │ └── SDKDelegate.h │ │ │ └── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ └── mac │ │ │ ├── Icon.icns │ │ │ ├── Info.plist │ │ │ ├── Prefix.pch │ │ │ ├── UserConfigMac.debug.xcconfig │ │ │ ├── UserConfigMac.release.xcconfig │ │ │ └── main.cpp │ │ └── proj.win32 │ │ ├── HelloJavascript.sln │ │ ├── HelloJavascript.vcxproj │ │ ├── HelloJavascript.vcxproj.filters │ │ ├── HelloJavascript.vcxproj.user │ │ ├── build-cfg.json │ │ ├── game.rc │ │ ├── main.cpp │ │ ├── main.h │ │ ├── res │ │ └── game.ico │ │ └── resource.h │ ├── main.js │ ├── project.json │ └── src │ ├── app.js │ └── resource.js ├── tools ├── coding-style │ └── tailing-spaces.py ├── make-package │ ├── README.markdown │ ├── config.json │ └── git-archive-all ├── simulator │ ├── .cocos-project.json │ ├── .project │ ├── config.json │ ├── frameworks │ │ └── runtime-src │ │ │ ├── Classes │ │ │ ├── AppDelegate.cpp │ │ │ ├── AppDelegate.h │ │ │ └── ide-support │ │ │ │ ├── CodeIDESupport.h │ │ │ │ ├── RuntimeJsImpl.cpp │ │ │ │ ├── RuntimeJsImpl.h │ │ │ │ └── lang │ │ │ ├── proj.ios_mac │ │ │ ├── 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 │ │ │ │ ├── build-cfg.json │ │ │ │ └── main.m │ │ │ ├── mac │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── ConsoleWindow.xib │ │ │ │ │ └── MainMenu.xib │ │ │ │ ├── ConsoleWindowController.h │ │ │ │ ├── ConsoleWindowController.m │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info.plist │ │ │ │ ├── Prefix.pch │ │ │ │ ├── Simulator.entitlements │ │ │ │ ├── SimulatorApp.h │ │ │ │ ├── SimulatorApp.mm │ │ │ │ ├── UserConfigMac.debug.xcconfig │ │ │ │ ├── UserConfigMac.release.xcconfig │ │ │ │ ├── build-cfg.json │ │ │ │ ├── en.lproj │ │ │ │ │ └── MainMenu.xib │ │ │ │ ├── main.m │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ ├── ConsoleWindow.strings │ │ │ │ │ └── MainMenu.xib │ │ │ └── simulator.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── proj.win32 │ │ │ ├── SimulatorWin.cpp │ │ │ ├── SimulatorWin.h │ │ │ ├── build-cfg.json │ │ │ ├── game.rc │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ ├── res │ │ │ └── game.ico │ │ │ ├── resource.h │ │ │ ├── simulator.sln │ │ │ ├── simulator.vcxproj │ │ │ ├── simulator.vcxproj.filters │ │ │ ├── simulator.vcxproj.user │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ └── libsimulator │ │ ├── lib │ │ ├── AppEvent.cpp │ │ ├── AppEvent.h │ │ ├── AppLang.cpp │ │ ├── AppLang.h │ │ ├── DeviceEx.h │ │ ├── PlayerEditBoxServiceProtocol.h │ │ ├── PlayerFileDialogServiceProtocol.h │ │ ├── PlayerMacros.h │ │ ├── PlayerMenuServiceProtocol.cpp │ │ ├── PlayerMenuServiceProtocol.h │ │ ├── PlayerMessageBoxServiceProtocol.h │ │ ├── PlayerProtocol.cpp │ │ ├── PlayerProtocol.h │ │ ├── PlayerServiceProtocol.cpp │ │ ├── PlayerServiceProtocol.h │ │ ├── PlayerSettings.cpp │ │ ├── PlayerSettings.h │ │ ├── PlayerTaskServiceProtocol.cpp │ │ ├── PlayerTaskServiceProtocol.h │ │ ├── PlayerUtils.cpp │ │ ├── PlayerUtils.h │ │ ├── ProjectConfig │ │ │ ├── ProjectConfig.cpp │ │ │ ├── ProjectConfig.h │ │ │ ├── SimulatorConfig.cpp │ │ │ └── SimulatorConfig.h │ │ ├── SimulatorExport.h │ │ ├── cocos2dx_extra.h │ │ ├── network │ │ │ ├── CCHTTPRequest.cpp │ │ │ ├── CCHTTPRequest.h │ │ │ └── CCHTTPRequestDelegate.h │ │ ├── platform │ │ │ ├── mac │ │ │ │ ├── DeviceEx-mac.mm │ │ │ │ ├── PlayerEditBoxServiceMac.h │ │ │ │ ├── PlayerEditBoxServiceMac.mm │ │ │ │ ├── PlayerFileDialogServiceMac.h │ │ │ │ ├── PlayerFileDialogServiceMac.mm │ │ │ │ ├── PlayerMac.h │ │ │ │ ├── PlayerMac.mm │ │ │ │ ├── PlayerMenuServiceMac.h │ │ │ │ ├── PlayerMenuServiceMac.mm │ │ │ │ ├── PlayerMessageBoxServiceMac.h │ │ │ │ ├── PlayerMessageBoxServiceMac.mm │ │ │ │ ├── PlayerTaskServiceMac.h │ │ │ │ ├── PlayerTaskServiceMac.mm │ │ │ │ ├── Runtime_ios-mac.mm │ │ │ │ └── openudid │ │ │ │ │ ├── OpenUDIDMac.h │ │ │ │ │ └── OpenUDIDMac.m │ │ │ └── win32 │ │ │ │ ├── DeviceEx-win32.cpp │ │ │ │ ├── PlayerEditBoxServiceWin.cpp │ │ │ │ ├── PlayerEditBoxServiceWin.h │ │ │ │ ├── PlayerFileDialogServiceWin.cpp │ │ │ │ ├── PlayerFileDialogServiceWin.h │ │ │ │ ├── PlayerMenuServiceWin.cpp │ │ │ │ ├── PlayerMenuServiceWin.h │ │ │ │ ├── PlayerMessageBoxServiceWin.cpp │ │ │ │ ├── PlayerMessageBoxServiceWin.h │ │ │ │ ├── PlayerTaskServiceWin.cpp │ │ │ │ ├── PlayerTaskServiceWin.h │ │ │ │ ├── PlayerWin.cpp │ │ │ │ ├── PlayerWin.h │ │ │ │ └── SimulatorWin.cpp │ │ ├── protobuf-lite │ │ │ ├── config.h │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── extension_set.cc │ │ │ │ ├── extension_set.h │ │ │ │ ├── generated_message_util.cc │ │ │ │ ├── generated_message_util.h │ │ │ │ ├── io │ │ │ │ ├── coded_stream.cc │ │ │ │ ├── coded_stream.h │ │ │ │ ├── coded_stream_inl.h │ │ │ │ ├── zero_copy_stream.cc │ │ │ │ ├── zero_copy_stream.h │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ │ └── zero_copy_stream_impl_lite.h │ │ │ │ ├── message_lite.cc │ │ │ │ ├── message_lite.h │ │ │ │ ├── repeated_field.cc │ │ │ │ ├── repeated_field.h │ │ │ │ ├── stubs │ │ │ │ ├── atomicops.h │ │ │ │ ├── atomicops_internals_arm_gcc.h │ │ │ │ ├── atomicops_internals_atomicword_compat.h │ │ │ │ ├── atomicops_internals_generic_gcc.h │ │ │ │ ├── atomicops_internals_macosx.h │ │ │ │ ├── atomicops_internals_x86_gcc.cc │ │ │ │ ├── atomicops_internals_x86_gcc.h │ │ │ │ ├── atomicops_internals_x86_msvc.cc │ │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── hash.h │ │ │ │ ├── map-util.h │ │ │ │ ├── once.cc │ │ │ │ ├── once.h │ │ │ │ ├── platform_macros.h │ │ │ │ ├── stl_util.h │ │ │ │ ├── stringprintf.cc │ │ │ │ ├── stringprintf.h │ │ │ │ ├── template_util.h │ │ │ │ └── type_traits.h │ │ │ │ ├── wire_format_lite.cc │ │ │ │ ├── wire_format_lite.h │ │ │ │ └── wire_format_lite_inl.h │ │ └── runtime │ │ │ ├── ConfigParser.cpp │ │ │ ├── ConfigParser.h │ │ │ ├── ConnectWaitLayer.cpp │ │ │ ├── ConnectWaitLayer.h │ │ │ ├── ConsoleCommand.cpp │ │ │ ├── ConsoleCommand.h │ │ │ ├── FileServer.cpp │ │ │ ├── FileServer.h │ │ │ ├── Landscape_png.cpp │ │ │ ├── PlayDisable_png.cpp │ │ │ ├── PlayEnable_png.cpp │ │ │ ├── Portrait_png.cpp │ │ │ ├── Protos.pb.cc │ │ │ ├── Protos.pb.h │ │ │ ├── ResData.h │ │ │ ├── Runtime.cpp │ │ │ ├── Runtime.h │ │ │ ├── RuntimeProtocol.cpp │ │ │ ├── RuntimeProtocol.h │ │ │ ├── Shine_png.cpp │ │ │ ├── VisibleRect.cpp │ │ │ ├── VisibleRect.h │ │ │ ├── Widget_mac.h │ │ │ └── Widget_mac.mm │ │ ├── proj.android │ │ ├── Android.mk │ │ ├── hellolua │ │ │ └── Runtime_android.cpp │ │ └── prebuilt-mk │ │ │ └── Android.mk │ │ ├── proj.ios_mac │ │ ├── ios │ │ │ └── Prefix.pch │ │ ├── libsimulator.xcodeproj │ │ │ └── project.pbxproj │ │ └── mac │ │ │ └── Prefix.pch │ │ └── proj.win32 │ │ ├── Runtime_win32.cpp │ │ ├── libsimulator.vcxproj │ │ ├── libsimulator.vcxproj.filters │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── tojs │ ├── README.mdown │ ├── anysdk-appstore.ini │ ├── anysdk-common.ini │ ├── cocos2dx.ini │ ├── cocos2dx_audioengine.ini │ ├── cocos2dx_dragonbones.ini │ ├── cocos2dx_editor_support.ini │ ├── cocos2dx_extension.ini │ ├── cocos2dx_network.ini │ ├── cocos2dx_particle.ini │ ├── cocos2dx_spine.ini │ ├── cocos2dx_video.ini │ ├── cocos2dx_webview.ini │ ├── genbindings.py │ ├── gfx.ini │ └── renderer.ini └── travis-scripts │ ├── before-install.sh │ ├── config.gitingore │ ├── for-each-file-in-dir.sh │ ├── generate-bindings.sh │ ├── generate-cocosfiles.sh │ ├── generate-template-files.py │ └── run-script.sh └── utils └── git.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/README.md -------------------------------------------------------------------------------- /auto-build-src.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/auto-build-src.bat -------------------------------------------------------------------------------- /auto-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/auto-build.bat -------------------------------------------------------------------------------- /cocos/2d/CCFontAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCFontAtlas.cpp -------------------------------------------------------------------------------- /cocos/2d/CCFontAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCFontAtlas.h -------------------------------------------------------------------------------- /cocos/2d/CCFontFreetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCFontFreetype.cpp -------------------------------------------------------------------------------- /cocos/2d/CCFontFreetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCFontFreetype.h -------------------------------------------------------------------------------- /cocos/2d/CCLabelLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCLabelLayout.cpp -------------------------------------------------------------------------------- /cocos/2d/CCLabelLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCLabelLayout.h -------------------------------------------------------------------------------- /cocos/2d/CCTTFLabelAtlasCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCTTFLabelAtlasCache.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTTFLabelAtlasCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCTTFLabelAtlasCache.h -------------------------------------------------------------------------------- /cocos/2d/CCTTFLabelRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCTTFLabelRenderer.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTTFLabelRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCTTFLabelRenderer.h -------------------------------------------------------------------------------- /cocos/2d/CCTTFTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCTTFTypes.cpp -------------------------------------------------------------------------------- /cocos/2d/CCTTFTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/2d/CCTTFTypes.h -------------------------------------------------------------------------------- /cocos/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/Android.mk -------------------------------------------------------------------------------- /cocos/audio/AudioEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/AudioEngine.cpp -------------------------------------------------------------------------------- /cocos/audio/android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/Android.mk -------------------------------------------------------------------------------- /cocos/audio/android/AssetFd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AssetFd.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AssetFd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AssetFd.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioBufferProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioBufferProvider.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoder.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoder.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderMp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoderMp3.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderMp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoderMp3.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderOgg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoderOgg.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderOgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoderOgg.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoderProvider.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoderProvider.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderSLES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoderSLES.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderSLES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoderSLES.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderWav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoderWav.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioDecoderWav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioDecoderWav.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioEngine-inl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioEngine-inl.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioEngine-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioEngine-inl.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioMixer.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioMixer.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioMixerController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioMixerController.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioMixerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioMixerController.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioMixerOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioMixerOps.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioPlayerProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioPlayerProvider.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioPlayerProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioPlayerProvider.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioResampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioResampler.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioResampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioResampler.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioResamplerCubic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioResamplerCubic.cpp -------------------------------------------------------------------------------- /cocos/audio/android/AudioResamplerCubic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioResamplerCubic.h -------------------------------------------------------------------------------- /cocos/audio/android/AudioResamplerPublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/AudioResamplerPublic.h -------------------------------------------------------------------------------- /cocos/audio/android/IAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/IAudioPlayer.h -------------------------------------------------------------------------------- /cocos/audio/android/ICallerThreadUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/ICallerThreadUtils.h -------------------------------------------------------------------------------- /cocos/audio/android/IVolumeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/IVolumeProvider.h -------------------------------------------------------------------------------- /cocos/audio/android/OpenSLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/OpenSLHelper.h -------------------------------------------------------------------------------- /cocos/audio/android/PcmAudioPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/PcmAudioPlayer.cpp -------------------------------------------------------------------------------- /cocos/audio/android/PcmAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/PcmAudioPlayer.h -------------------------------------------------------------------------------- /cocos/audio/android/PcmAudioService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/PcmAudioService.cpp -------------------------------------------------------------------------------- /cocos/audio/android/PcmAudioService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/PcmAudioService.h -------------------------------------------------------------------------------- /cocos/audio/android/PcmBufferProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/PcmBufferProvider.cpp -------------------------------------------------------------------------------- /cocos/audio/android/PcmBufferProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/PcmBufferProvider.h -------------------------------------------------------------------------------- /cocos/audio/android/PcmData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/PcmData.cpp -------------------------------------------------------------------------------- /cocos/audio/android/PcmData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/PcmData.h -------------------------------------------------------------------------------- /cocos/audio/android/Track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/Track.cpp -------------------------------------------------------------------------------- /cocos/audio/android/Track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/Track.h -------------------------------------------------------------------------------- /cocos/audio/android/UrlAudioPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/UrlAudioPlayer.cpp -------------------------------------------------------------------------------- /cocos/audio/android/UrlAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/UrlAudioPlayer.h -------------------------------------------------------------------------------- /cocos/audio/android/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/audio.h -------------------------------------------------------------------------------- /cocos/audio/android/audio_utils/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/audio_utils/format.c -------------------------------------------------------------------------------- /cocos/audio/android/audio_utils/minifloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/audio_utils/minifloat.cpp -------------------------------------------------------------------------------- /cocos/audio/android/audio_utils/primitives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/audio_utils/primitives.c -------------------------------------------------------------------------------- /cocos/audio/android/audio_utils/private/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/audio_utils/private/private.h -------------------------------------------------------------------------------- /cocos/audio/android/cutils/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/cutils/bitops.h -------------------------------------------------------------------------------- /cocos/audio/android/cutils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/cutils/log.h -------------------------------------------------------------------------------- /cocos/audio/android/mp3reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/mp3reader.cpp -------------------------------------------------------------------------------- /cocos/audio/android/mp3reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/mp3reader.h -------------------------------------------------------------------------------- /cocos/audio/android/tinysndfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/tinysndfile.cpp -------------------------------------------------------------------------------- /cocos/audio/android/tinysndfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/tinysndfile.h -------------------------------------------------------------------------------- /cocos/audio/android/utils/Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/utils/Compat.h -------------------------------------------------------------------------------- /cocos/audio/android/utils/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/utils/Errors.h -------------------------------------------------------------------------------- /cocos/audio/android/utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/utils/Utils.cpp -------------------------------------------------------------------------------- /cocos/audio/android/utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/android/utils/Utils.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/apple/AudioCache.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioCache.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/apple/AudioCache.mm -------------------------------------------------------------------------------- /cocos/audio/apple/AudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/apple/AudioDecoder.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioDecoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/apple/AudioDecoder.mm -------------------------------------------------------------------------------- /cocos/audio/apple/AudioEngine-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/apple/AudioEngine-inl.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioEngine-inl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/apple/AudioEngine-inl.mm -------------------------------------------------------------------------------- /cocos/audio/apple/AudioMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/apple/AudioMacros.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/apple/AudioPlayer.h -------------------------------------------------------------------------------- /cocos/audio/apple/AudioPlayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/apple/AudioPlayer.mm -------------------------------------------------------------------------------- /cocos/audio/include/AudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/include/AudioEngine.h -------------------------------------------------------------------------------- /cocos/audio/include/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/include/Export.h -------------------------------------------------------------------------------- /cocos/audio/openharmony/PcmAudioService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/openharmony/PcmAudioService.cpp -------------------------------------------------------------------------------- /cocos/audio/openharmony/PcmAudioService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/openharmony/PcmAudioService.h -------------------------------------------------------------------------------- /cocos/audio/openharmony/UrlAudioPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/openharmony/UrlAudioPlayer.cpp -------------------------------------------------------------------------------- /cocos/audio/openharmony/UrlAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/openharmony/UrlAudioPlayer.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioCache.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioCache.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioDecoder.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioDecoder.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoderManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioDecoderManager.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioDecoderManager.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoderMp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioDecoderMp3.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoderMp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioDecoderMp3.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoderOgg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioDecoderOgg.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioDecoderOgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioDecoderOgg.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioEngine-win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioEngine-win32.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioEngine-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioEngine-win32.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioMacros.h -------------------------------------------------------------------------------- /cocos/audio/win32/AudioPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioPlayer.cpp -------------------------------------------------------------------------------- /cocos/audio/win32/AudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/audio/win32/AudioPlayer.h -------------------------------------------------------------------------------- /cocos/base/CCAutoreleasePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCAutoreleasePool.cpp -------------------------------------------------------------------------------- /cocos/base/CCAutoreleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCAutoreleasePool.h -------------------------------------------------------------------------------- /cocos/base/CCConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCConfiguration.cpp -------------------------------------------------------------------------------- /cocos/base/CCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCConfiguration.h -------------------------------------------------------------------------------- /cocos/base/CCData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCData.cpp -------------------------------------------------------------------------------- /cocos/base/CCData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCData.h -------------------------------------------------------------------------------- /cocos/base/CCGLUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCGLUtils.cpp -------------------------------------------------------------------------------- /cocos/base/CCGLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCGLUtils.h -------------------------------------------------------------------------------- /cocos/base/CCLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCLog.cpp -------------------------------------------------------------------------------- /cocos/base/CCLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCLog.h -------------------------------------------------------------------------------- /cocos/base/CCMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCMap.h -------------------------------------------------------------------------------- /cocos/base/CCRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCRef.cpp -------------------------------------------------------------------------------- /cocos/base/CCRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCRef.h -------------------------------------------------------------------------------- /cocos/base/CCRefPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCRefPtr.h -------------------------------------------------------------------------------- /cocos/base/CCRenderTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCRenderTexture.cpp -------------------------------------------------------------------------------- /cocos/base/CCRenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCRenderTexture.h -------------------------------------------------------------------------------- /cocos/base/CCScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCScheduler.cpp -------------------------------------------------------------------------------- /cocos/base/CCScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCScheduler.h -------------------------------------------------------------------------------- /cocos/base/CCThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCThreadPool.cpp -------------------------------------------------------------------------------- /cocos/base/CCThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCThreadPool.h -------------------------------------------------------------------------------- /cocos/base/CCValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCValue.cpp -------------------------------------------------------------------------------- /cocos/base/CCValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCValue.h -------------------------------------------------------------------------------- /cocos/base/CCVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/CCVector.h -------------------------------------------------------------------------------- /cocos/base/TGAlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/TGAlib.cpp -------------------------------------------------------------------------------- /cocos/base/TGAlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/TGAlib.h -------------------------------------------------------------------------------- /cocos/base/ZipUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ZipUtils.cpp -------------------------------------------------------------------------------- /cocos/base/ZipUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ZipUtils.h -------------------------------------------------------------------------------- /cocos/base/astc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/astc.cpp -------------------------------------------------------------------------------- /cocos/base/astc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/astc.h -------------------------------------------------------------------------------- /cocos/base/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/base64.cpp -------------------------------------------------------------------------------- /cocos/base/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/base64.h -------------------------------------------------------------------------------- /cocos/base/ccCArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccCArray.cpp -------------------------------------------------------------------------------- /cocos/base/ccCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccCArray.h -------------------------------------------------------------------------------- /cocos/base/ccConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccConfig.h -------------------------------------------------------------------------------- /cocos/base/ccMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccMacros.h -------------------------------------------------------------------------------- /cocos/base/ccRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccRandom.cpp -------------------------------------------------------------------------------- /cocos/base/ccRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccRandom.h -------------------------------------------------------------------------------- /cocos/base/ccTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccTypes.cpp -------------------------------------------------------------------------------- /cocos/base/ccTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccTypes.h -------------------------------------------------------------------------------- /cocos/base/ccUTF8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccUTF8.cpp -------------------------------------------------------------------------------- /cocos/base/ccUTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccUTF8.h -------------------------------------------------------------------------------- /cocos/base/ccUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccUtils.cpp -------------------------------------------------------------------------------- /cocos/base/ccUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/ccUtils.h -------------------------------------------------------------------------------- /cocos/base/csscolorparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/csscolorparser.cpp -------------------------------------------------------------------------------- /cocos/base/csscolorparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/csscolorparser.hpp -------------------------------------------------------------------------------- /cocos/base/etc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/etc1.cpp -------------------------------------------------------------------------------- /cocos/base/etc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/etc1.h -------------------------------------------------------------------------------- /cocos/base/etc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/etc2.cpp -------------------------------------------------------------------------------- /cocos/base/etc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/etc2.h -------------------------------------------------------------------------------- /cocos/base/pvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/pvr.cpp -------------------------------------------------------------------------------- /cocos/base/pvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/pvr.h -------------------------------------------------------------------------------- /cocos/base/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/uthash.h -------------------------------------------------------------------------------- /cocos/base/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/base/utlist.h -------------------------------------------------------------------------------- /cocos/cocos2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/cocos2d.cpp -------------------------------------------------------------------------------- /cocos/cocos2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/cocos2d.h -------------------------------------------------------------------------------- /cocos/editor-support/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/Android.mk -------------------------------------------------------------------------------- /cocos/editor-support/IOBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/IOBuffer.cpp -------------------------------------------------------------------------------- /cocos/editor-support/IOBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/IOBuffer.h -------------------------------------------------------------------------------- /cocos/editor-support/IOTypedArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/IOTypedArray.cpp -------------------------------------------------------------------------------- /cocos/editor-support/IOTypedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/IOTypedArray.h -------------------------------------------------------------------------------- /cocos/editor-support/MeshBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/MeshBuffer.cpp -------------------------------------------------------------------------------- /cocos/editor-support/MeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/MeshBuffer.h -------------------------------------------------------------------------------- /cocos/editor-support/MiddlewareMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/MiddlewareMacro.h -------------------------------------------------------------------------------- /cocos/editor-support/MiddlewareManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/MiddlewareManager.cpp -------------------------------------------------------------------------------- /cocos/editor-support/MiddlewareManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/MiddlewareManager.h -------------------------------------------------------------------------------- /cocos/editor-support/TypedArrayPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/TypedArrayPool.cpp -------------------------------------------------------------------------------- /cocos/editor-support/TypedArrayPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/TypedArrayPool.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/DragonBonesHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/DragonBonesHeaders.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/animation/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/animation/Animation.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/armature/Armature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/armature/Armature.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/armature/Armature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/armature/Armature.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/armature/Bone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/armature/Bone.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/armature/Bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/armature/Bone.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/armature/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/armature/Constraint.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/armature/Slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/armature/Slot.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/armature/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/armature/Slot.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/core/BaseObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/core/BaseObject.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/core/BaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/core/BaseObject.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/core/DragonBones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/core/DragonBones.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/core/DragonBones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/core/DragonBones.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/event/EventObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/event/EventObject.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/event/EventObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/event/EventObject.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/factory/BaseFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/factory/BaseFactory.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/geom/ColorTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/geom/ColorTransform.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/geom/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/geom/Matrix.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/geom/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/geom/Point.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/geom/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/geom/Point.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/geom/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/geom/Rectangle.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/geom/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/geom/Transform.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/geom/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/geom/Transform.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/model/AnimationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/model/AnimationData.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/model/ArmatureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/model/ArmatureData.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/model/CanvasData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/model/CanvasData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/model/CanvasData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/model/CanvasData.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/model/DisplayData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/model/DisplayData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/model/DisplayData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/model/DisplayData.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/model/SkinData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/model/SkinData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/model/SkinData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/model/SkinData.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/model/UserData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/model/UserData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/model/UserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/model/UserData.h -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/parser/DataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/parser/DataParser.cpp -------------------------------------------------------------------------------- /cocos/editor-support/dragonbones/parser/DataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/dragonbones/parser/DataParser.h -------------------------------------------------------------------------------- /cocos/editor-support/middleware-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/middleware-adapter.cpp -------------------------------------------------------------------------------- /cocos/editor-support/middleware-adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/middleware-adapter.h -------------------------------------------------------------------------------- /cocos/editor-support/particle/ParticleSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/particle/ParticleSimulator.cpp -------------------------------------------------------------------------------- /cocos/editor-support/particle/ParticleSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/particle/ParticleSimulator.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Animation.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Animation.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/AnimationState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/AnimationState.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/AnimationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/AnimationState.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/AnimationStateData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/AnimationStateData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/AnimationStateData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/AnimationStateData.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Atlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Atlas.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Atlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Atlas.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/AtlasAttachmentLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/AtlasAttachmentLoader.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/AtlasAttachmentLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/AtlasAttachmentLoader.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Attachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Attachment.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Attachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Attachment.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/AttachmentLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/AttachmentLoader.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/AttachmentLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/AttachmentLoader.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/AttachmentTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/AttachmentTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/AttachmentTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/AttachmentTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/AttachmentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/AttachmentType.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/BlendMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/BlendMode.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Bone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Bone.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Bone.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/BoneData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/BoneData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/BoneData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/BoneData.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/BoundingBoxAttachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/BoundingBoxAttachment.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/BoundingBoxAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/BoundingBoxAttachment.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/ClippingAttachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/ClippingAttachment.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/ClippingAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/ClippingAttachment.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Color.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/ColorTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/ColorTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/ColorTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/ColorTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Constraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Constraint.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Constraint.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/ConstraintData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/ConstraintData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/ConstraintData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/ConstraintData.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/ContainerUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/ContainerUtil.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/CurveTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/CurveTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/CurveTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/CurveTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Debug.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/DeformTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/DeformTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/DeformTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/DeformTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/DrawOrderTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/DrawOrderTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/DrawOrderTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/DrawOrderTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Event.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Event.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/EventData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/EventData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/EventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/EventData.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/EventTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/EventTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/EventTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/EventTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Extension.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Extension.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/HasRendererObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/HasRendererObject.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/HashMap.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/IkConstraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/IkConstraint.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/IkConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/IkConstraint.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/IkConstraintData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/IkConstraintData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/IkConstraintData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/IkConstraintData.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/IkConstraintTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/IkConstraintTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/IkConstraintTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/IkConstraintTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Json.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Json.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/LinkedMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/LinkedMesh.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/LinkedMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/LinkedMesh.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/MathUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/MathUtil.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/MathUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/MathUtil.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/MeshAttachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/MeshAttachment.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/MeshAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/MeshAttachment.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/MixBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/MixBlend.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/MixDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/MixDirection.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/PathAttachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/PathAttachment.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/PathAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/PathAttachment.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/PathConstraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/PathConstraint.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/PathConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/PathConstraint.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/PathConstraintData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/PathConstraintData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/PathConstraintData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/PathConstraintData.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/PathConstraintMixTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/PathConstraintMixTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/PointAttachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/PointAttachment.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/PointAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/PointAttachment.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Pool.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/PositionMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/PositionMode.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/RTTI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/RTTI.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/RTTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/RTTI.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/RegionAttachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/RegionAttachment.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/RegionAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/RegionAttachment.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/RotateMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/RotateMode.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/RotateTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/RotateTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/RotateTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/RotateTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/ScaleTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/ScaleTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/ScaleTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/ScaleTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/ShearTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/ShearTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/ShearTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/ShearTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Skeleton.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Skeleton.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/SkeletonBinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SkeletonBinary.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/SkeletonBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SkeletonBinary.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/SkeletonBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SkeletonBounds.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/SkeletonBounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SkeletonBounds.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/SkeletonClipping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SkeletonClipping.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/SkeletonClipping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SkeletonClipping.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/SkeletonData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SkeletonData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/SkeletonData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SkeletonData.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/SkeletonJson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SkeletonJson.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/SkeletonJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SkeletonJson.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Skin.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Skin.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Slot.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Slot.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/SlotData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SlotData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/SlotData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SlotData.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/SpacingMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SpacingMode.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/SpineObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SpineObject.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/SpineObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SpineObject.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/SpineString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/SpineString.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/TextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TextureLoader.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/TextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TextureLoader.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Timeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Timeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Timeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/TimelineType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TimelineType.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/TransformConstraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TransformConstraint.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/TransformConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TransformConstraint.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/TransformConstraintData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TransformConstraintData.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/TransformConstraintData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TransformConstraintData.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/TransformMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TransformMode.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/TranslateTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TranslateTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/TranslateTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TranslateTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Triangulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Triangulator.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Triangulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Triangulator.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/TwoColorTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TwoColorTimeline.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/TwoColorTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/TwoColorTimeline.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Updatable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Updatable.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/Updatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Updatable.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Vector.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/VertexAttachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/VertexAttachment.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/VertexAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/VertexAttachment.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/VertexEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/VertexEffect.cpp -------------------------------------------------------------------------------- /cocos/editor-support/spine/VertexEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/VertexEffect.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/Vertices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/Vertices.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/dll.h -------------------------------------------------------------------------------- /cocos/editor-support/spine/spine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/editor-support/spine/spine.h -------------------------------------------------------------------------------- /cocos/math/CCGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/CCGeometry.cpp -------------------------------------------------------------------------------- /cocos/math/CCGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/CCGeometry.h -------------------------------------------------------------------------------- /cocos/math/CCMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/CCMath.h -------------------------------------------------------------------------------- /cocos/math/CCMathBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/CCMathBase.h -------------------------------------------------------------------------------- /cocos/math/CCVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/CCVertex.cpp -------------------------------------------------------------------------------- /cocos/math/CCVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/CCVertex.h -------------------------------------------------------------------------------- /cocos/math/Mat3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Mat3.cpp -------------------------------------------------------------------------------- /cocos/math/Mat3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Mat3.hpp -------------------------------------------------------------------------------- /cocos/math/Mat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Mat4.cpp -------------------------------------------------------------------------------- /cocos/math/Mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Mat4.h -------------------------------------------------------------------------------- /cocos/math/Mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Mat4.inl -------------------------------------------------------------------------------- /cocos/math/MathUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/MathUtil.cpp -------------------------------------------------------------------------------- /cocos/math/MathUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/MathUtil.h -------------------------------------------------------------------------------- /cocos/math/MathUtil.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/MathUtil.inl -------------------------------------------------------------------------------- /cocos/math/MathUtilNeon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/MathUtilNeon.inl -------------------------------------------------------------------------------- /cocos/math/MathUtilNeon64.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/MathUtilNeon64.inl -------------------------------------------------------------------------------- /cocos/math/MathUtilSSE.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/MathUtilSSE.inl -------------------------------------------------------------------------------- /cocos/math/Quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Quaternion.cpp -------------------------------------------------------------------------------- /cocos/math/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Quaternion.h -------------------------------------------------------------------------------- /cocos/math/Quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Quaternion.inl -------------------------------------------------------------------------------- /cocos/math/Vec2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Vec2.cpp -------------------------------------------------------------------------------- /cocos/math/Vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Vec2.h -------------------------------------------------------------------------------- /cocos/math/Vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Vec2.inl -------------------------------------------------------------------------------- /cocos/math/Vec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Vec3.cpp -------------------------------------------------------------------------------- /cocos/math/Vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Vec3.h -------------------------------------------------------------------------------- /cocos/math/Vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Vec3.inl -------------------------------------------------------------------------------- /cocos/math/Vec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Vec4.cpp -------------------------------------------------------------------------------- /cocos/math/Vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Vec4.h -------------------------------------------------------------------------------- /cocos/math/Vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/math/Vec4.inl -------------------------------------------------------------------------------- /cocos/network/CCDownloader-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/CCDownloader-android.cpp -------------------------------------------------------------------------------- /cocos/network/CCDownloader-android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/CCDownloader-android.h -------------------------------------------------------------------------------- /cocos/network/CCDownloader-curl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/CCDownloader-curl.cpp -------------------------------------------------------------------------------- /cocos/network/CCDownloader-curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/CCDownloader-curl.h -------------------------------------------------------------------------------- /cocos/network/CCDownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/CCDownloader.cpp -------------------------------------------------------------------------------- /cocos/network/CCDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/CCDownloader.h -------------------------------------------------------------------------------- /cocos/network/CCDownloaderImpl-apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/CCDownloaderImpl-apple.h -------------------------------------------------------------------------------- /cocos/network/CCDownloaderImpl-apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/CCDownloaderImpl-apple.mm -------------------------------------------------------------------------------- /cocos/network/CCIDownloaderImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/CCIDownloaderImpl.h -------------------------------------------------------------------------------- /cocos/network/HttpAsynConnection-apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/HttpAsynConnection-apple.h -------------------------------------------------------------------------------- /cocos/network/HttpAsynConnection-apple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/HttpAsynConnection-apple.m -------------------------------------------------------------------------------- /cocos/network/HttpClient-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/HttpClient-android.cpp -------------------------------------------------------------------------------- /cocos/network/HttpClient-apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/HttpClient-apple.mm -------------------------------------------------------------------------------- /cocos/network/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/HttpClient.cpp -------------------------------------------------------------------------------- /cocos/network/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/HttpClient.h -------------------------------------------------------------------------------- /cocos/network/HttpCookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/HttpCookie.cpp -------------------------------------------------------------------------------- /cocos/network/HttpCookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/HttpCookie.h -------------------------------------------------------------------------------- /cocos/network/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/HttpRequest.h -------------------------------------------------------------------------------- /cocos/network/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/HttpResponse.h -------------------------------------------------------------------------------- /cocos/network/SocketIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/SocketIO.cpp -------------------------------------------------------------------------------- /cocos/network/SocketIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/SocketIO.h -------------------------------------------------------------------------------- /cocos/network/Uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/Uri.cpp -------------------------------------------------------------------------------- /cocos/network/Uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/Uri.h -------------------------------------------------------------------------------- /cocos/network/WebSocket-apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/WebSocket-apple.mm -------------------------------------------------------------------------------- /cocos/network/WebSocket-libwebsockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/WebSocket-libwebsockets.cpp -------------------------------------------------------------------------------- /cocos/network/WebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/WebSocket.h -------------------------------------------------------------------------------- /cocos/network/WebSocketServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/WebSocketServer.cpp -------------------------------------------------------------------------------- /cocos/network/WebSocketServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/network/WebSocketServer.h -------------------------------------------------------------------------------- /cocos/platform/CCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCApplication.h -------------------------------------------------------------------------------- /cocos/platform/CCCanvasRenderingContext2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCCanvasRenderingContext2D.h -------------------------------------------------------------------------------- /cocos/platform/CCDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCDevice.h -------------------------------------------------------------------------------- /cocos/platform/CCFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCFileUtils.cpp -------------------------------------------------------------------------------- /cocos/platform/CCFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCFileUtils.h -------------------------------------------------------------------------------- /cocos/platform/CCGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCGL.h -------------------------------------------------------------------------------- /cocos/platform/CCImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCImage.cpp -------------------------------------------------------------------------------- /cocos/platform/CCImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCImage.h -------------------------------------------------------------------------------- /cocos/platform/CCPlatformConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCPlatformConfig.h -------------------------------------------------------------------------------- /cocos/platform/CCPlatformDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCPlatformDefine.h -------------------------------------------------------------------------------- /cocos/platform/CCSAXParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCSAXParser.cpp -------------------------------------------------------------------------------- /cocos/platform/CCSAXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCSAXParser.h -------------------------------------------------------------------------------- /cocos/platform/CCStdC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/CCStdC.h -------------------------------------------------------------------------------- /cocos/platform/android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/Android.mk -------------------------------------------------------------------------------- /cocos/platform/android/CCApplication-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/CCApplication-android.cpp -------------------------------------------------------------------------------- /cocos/platform/android/CCDevice-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/CCDevice-android.cpp -------------------------------------------------------------------------------- /cocos/platform/android/CCFileUtils-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/CCFileUtils-android.cpp -------------------------------------------------------------------------------- /cocos/platform/android/CCFileUtils-android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/CCFileUtils-android.h -------------------------------------------------------------------------------- /cocos/platform/android/CCGL-android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/CCGL-android.h -------------------------------------------------------------------------------- /cocos/platform/android/CCPlatformDefine-android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/CCPlatformDefine-android.h -------------------------------------------------------------------------------- /cocos/platform/android/java/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/java/.classpath -------------------------------------------------------------------------------- /cocos/platform/android/java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/java/.project -------------------------------------------------------------------------------- /cocos/platform/android/java/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/java/AndroidManifest.xml -------------------------------------------------------------------------------- /cocos/platform/android/java/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/java/build.xml -------------------------------------------------------------------------------- /cocos/platform/android/java/libs/okhttp-3.12.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/java/libs/okhttp-3.12.14.jar -------------------------------------------------------------------------------- /cocos/platform/android/java/libs/okio-1.15.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/java/libs/okio-1.15.0.jar -------------------------------------------------------------------------------- /cocos/platform/android/java/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/java/proguard-project.txt -------------------------------------------------------------------------------- /cocos/platform/android/java/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/java/project.properties -------------------------------------------------------------------------------- /cocos/platform/android/java/res/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cocos/platform/android/jni/JniHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/jni/JniHelper.cpp -------------------------------------------------------------------------------- /cocos/platform/android/jni/JniHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/jni/JniHelper.h -------------------------------------------------------------------------------- /cocos/platform/android/jni/JniImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/jni/JniImp.cpp -------------------------------------------------------------------------------- /cocos/platform/android/jni/JniImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/jni/JniImp.h -------------------------------------------------------------------------------- /cocos/platform/android/libcocos2dx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/libcocos2dx/.gitignore -------------------------------------------------------------------------------- /cocos/platform/android/libcocos2dx/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/libcocos2dx/AndroidManifest.xml -------------------------------------------------------------------------------- /cocos/platform/android/libcocos2dx/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/libcocos2dx/build.gradle -------------------------------------------------------------------------------- /cocos/platform/android/libcocos2dx/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/android/libcocos2dx/proguard-rules.pro -------------------------------------------------------------------------------- /cocos/platform/apple/CCDevice-apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/apple/CCDevice-apple.h -------------------------------------------------------------------------------- /cocos/platform/apple/CCDevice-apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/apple/CCDevice-apple.mm -------------------------------------------------------------------------------- /cocos/platform/apple/CCFileUtils-apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/apple/CCFileUtils-apple.h -------------------------------------------------------------------------------- /cocos/platform/apple/CCFileUtils-apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/apple/CCFileUtils-apple.mm -------------------------------------------------------------------------------- /cocos/platform/desktop/CCGLView-desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/desktop/CCGLView-desktop.cpp -------------------------------------------------------------------------------- /cocos/platform/desktop/CCGLView-desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/desktop/CCGLView-desktop.h -------------------------------------------------------------------------------- /cocos/platform/ios/CCApplication-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/CCApplication-ios.mm -------------------------------------------------------------------------------- /cocos/platform/ios/CCDevice-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/CCDevice-ios.mm -------------------------------------------------------------------------------- /cocos/platform/ios/CCEAGLView-ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/CCEAGLView-ios.h -------------------------------------------------------------------------------- /cocos/platform/ios/CCEAGLView-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/CCEAGLView-ios.mm -------------------------------------------------------------------------------- /cocos/platform/ios/CCGL-ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/CCGL-ios.h -------------------------------------------------------------------------------- /cocos/platform/ios/CCImage-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/CCImage-ios.mm -------------------------------------------------------------------------------- /cocos/platform/ios/CCModuleConfigIOS.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/CCModuleConfigIOS.debug.xcconfig -------------------------------------------------------------------------------- /cocos/platform/ios/CCModuleConfigIOS.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/CCModuleConfigIOS.release.xcconfig -------------------------------------------------------------------------------- /cocos/platform/ios/CCPlatformDefine-ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/CCPlatformDefine-ios.h -------------------------------------------------------------------------------- /cocos/platform/ios/CCReachability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/CCReachability.cpp -------------------------------------------------------------------------------- /cocos/platform/ios/CCReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/CCReachability.h -------------------------------------------------------------------------------- /cocos/platform/ios/OpenGL_Internal-ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/OpenGL_Internal-ios.h -------------------------------------------------------------------------------- /cocos/platform/ios/cocos2d-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/ios/cocos2d-prefix.pch -------------------------------------------------------------------------------- /cocos/platform/mac/CCApplication-mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/mac/CCApplication-mac.mm -------------------------------------------------------------------------------- /cocos/platform/mac/CCDevice-mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/mac/CCDevice-mac.mm -------------------------------------------------------------------------------- /cocos/platform/mac/CCGL-mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/mac/CCGL-mac.h -------------------------------------------------------------------------------- /cocos/platform/mac/CCModuleConfigMac.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/mac/CCModuleConfigMac.debug.xcconfig -------------------------------------------------------------------------------- /cocos/platform/mac/CCModuleConfigMac.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/mac/CCModuleConfigMac.release.xcconfig -------------------------------------------------------------------------------- /cocos/platform/mac/CCPlatformDefine-mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/mac/CCPlatformDefine-mac.h -------------------------------------------------------------------------------- /cocos/platform/mac/cocos2d-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/mac/cocos2d-prefix.pch -------------------------------------------------------------------------------- /cocos/platform/openharmony/CCDevice-openharmony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/CCDevice-openharmony.cpp -------------------------------------------------------------------------------- /cocos/platform/openharmony/CCGL-openharmony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/CCGL-openharmony.h -------------------------------------------------------------------------------- /cocos/platform/openharmony/FileUtils-openharmony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/FileUtils-openharmony.cpp -------------------------------------------------------------------------------- /cocos/platform/openharmony/FileUtils-openharmony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/FileUtils-openharmony.h -------------------------------------------------------------------------------- /cocos/platform/openharmony/OpenHarmonyPlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/OpenHarmonyPlatform.cpp -------------------------------------------------------------------------------- /cocos/platform/openharmony/OpenHarmonyPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/OpenHarmonyPlatform.h -------------------------------------------------------------------------------- /cocos/platform/openharmony/WorkerMessageQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/WorkerMessageQueue.cpp -------------------------------------------------------------------------------- /cocos/platform/openharmony/WorkerMessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/WorkerMessageQueue.h -------------------------------------------------------------------------------- /cocos/platform/openharmony/napi/NapiHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/napi/NapiHelper.cpp -------------------------------------------------------------------------------- /cocos/platform/openharmony/napi/NapiHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/napi/NapiHelper.h -------------------------------------------------------------------------------- /cocos/platform/openharmony/napi/NapiInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/napi/NapiInit.cpp -------------------------------------------------------------------------------- /cocos/platform/openharmony/napi/NapiValueConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/napi/NapiValueConverter.cpp -------------------------------------------------------------------------------- /cocos/platform/openharmony/napi/NapiValueConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/napi/NapiValueConverter.h -------------------------------------------------------------------------------- /cocos/platform/openharmony/napi/napi-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/napi/napi-inl.h -------------------------------------------------------------------------------- /cocos/platform/openharmony/napi/napi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/napi/napi.h -------------------------------------------------------------------------------- /cocos/platform/openharmony/napi/native_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/napi/native_common.h -------------------------------------------------------------------------------- /cocos/platform/openharmony/render/egl_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/render/egl_core.cpp -------------------------------------------------------------------------------- /cocos/platform/openharmony/render/egl_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/openharmony/render/egl_core.h -------------------------------------------------------------------------------- /cocos/platform/win32/CCApplication-win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/CCApplication-win32.cpp -------------------------------------------------------------------------------- /cocos/platform/win32/CCDevice-win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/CCDevice-win32.cpp -------------------------------------------------------------------------------- /cocos/platform/win32/CCFileUtils-win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/CCFileUtils-win32.cpp -------------------------------------------------------------------------------- /cocos/platform/win32/CCFileUtils-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/CCFileUtils-win32.h -------------------------------------------------------------------------------- /cocos/platform/win32/CCGL-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/CCGL-win32.h -------------------------------------------------------------------------------- /cocos/platform/win32/CCPlatformDefine-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/CCPlatformDefine-win32.h -------------------------------------------------------------------------------- /cocos/platform/win32/CCStdC-win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/CCStdC-win32.cpp -------------------------------------------------------------------------------- /cocos/platform/win32/CCStdC-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/CCStdC-win32.h -------------------------------------------------------------------------------- /cocos/platform/win32/CCUtils-win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/CCUtils-win32.cpp -------------------------------------------------------------------------------- /cocos/platform/win32/CCUtils-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/CCUtils-win32.h -------------------------------------------------------------------------------- /cocos/platform/win32/compat/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/compat/stdint.h -------------------------------------------------------------------------------- /cocos/platform/win32/inet_pton_mingw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/inet_pton_mingw.cpp -------------------------------------------------------------------------------- /cocos/platform/win32/inet_pton_mingw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/platform/win32/inet_pton_mingw.h -------------------------------------------------------------------------------- /cocos/renderer/Macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/Macro.h -------------------------------------------------------------------------------- /cocos/renderer/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/Types.cpp -------------------------------------------------------------------------------- /cocos/renderer/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/Types.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/DeviceGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/DeviceGraphics.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/DeviceGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/DeviceGraphics.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/FrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/FrameBuffer.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/FrameBuffer.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/GFX.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/GFX.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/GFXUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/GFXUtils.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/GFXUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/GFXUtils.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/GraphicsHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/GraphicsHandle.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/GraphicsHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/GraphicsHandle.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/IndexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/IndexBuffer.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/IndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/IndexBuffer.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/Program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/Program.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/Program.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/RenderBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/RenderBuffer.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/RenderBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/RenderBuffer.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/RenderTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/RenderTarget.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/RenderTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/RenderTarget.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/State.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/State.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/Texture.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/Texture.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/Texture2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/Texture2D.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/Texture2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/Texture2D.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/VertexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/VertexBuffer.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/VertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/VertexBuffer.h -------------------------------------------------------------------------------- /cocos/renderer/gfx/VertexFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/VertexFormat.cpp -------------------------------------------------------------------------------- /cocos/renderer/gfx/VertexFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/gfx/VertexFormat.h -------------------------------------------------------------------------------- /cocos/renderer/memop/RecyclePool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/memop/RecyclePool.hpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/BaseRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/BaseRenderer.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/BaseRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/BaseRenderer.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Camera.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Camera.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Config.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Config.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/Effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Effect.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Effect.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/EffectBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/EffectBase.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/EffectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/EffectBase.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/EffectVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/EffectVariant.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/EffectVariant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/EffectVariant.hpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/ForwardRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/ForwardRenderer.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/ForwardRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/ForwardRenderer.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/INode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/INode.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/InputAssembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/InputAssembler.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/InputAssembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/InputAssembler.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Light.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Light.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Model.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Model.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/Pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Pass.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Pass.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/ProgramLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/ProgramLib.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/ProgramLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/ProgramLib.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Renderer.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/RendererUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/RendererUtils.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/RendererUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/RendererUtils.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Scene.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Scene.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/Technique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Technique.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/Technique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/Technique.h -------------------------------------------------------------------------------- /cocos/renderer/renderer/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/View.cpp -------------------------------------------------------------------------------- /cocos/renderer/renderer/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/renderer/View.h -------------------------------------------------------------------------------- /cocos/renderer/scene/MemPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/MemPool.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/MemPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/MemPool.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/MeshBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/MeshBuffer.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/MeshBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/MeshBuffer.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/ModelBatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/ModelBatcher.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/ModelBatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/ModelBatcher.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/NodeMemPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/NodeMemPool.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/NodeMemPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/NodeMemPool.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/NodeProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/NodeProxy.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/NodeProxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/NodeProxy.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/ParallelTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/ParallelTask.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/ParallelTask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/ParallelTask.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/RenderFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/RenderFlow.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/RenderFlow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/RenderFlow.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/StencilManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/StencilManager.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/StencilManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/StencilManager.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/Assembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/Assembler.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/Assembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/Assembler.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/AssemblerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/AssemblerBase.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/AssemblerBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/AssemblerBase.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/AssemblerSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/AssemblerSprite.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/AssemblerSprite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/AssemblerSprite.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/CustomAssembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/CustomAssembler.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/CustomAssembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/CustomAssembler.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/MaskAssembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/MaskAssembler.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/MaskAssembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/MaskAssembler.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/MeshAssembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/MeshAssembler.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/MeshAssembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/MeshAssembler.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/Particle3DAssembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/Particle3DAssembler.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/Particle3DAssembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/Particle3DAssembler.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/RenderData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/RenderData.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/RenderData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/RenderData.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/RenderDataList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/RenderDataList.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/RenderDataList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/RenderDataList.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/SimpleSprite2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/SimpleSprite2D.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/SimpleSprite2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/SimpleSprite2D.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/SimpleSprite3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/SimpleSprite3D.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/SimpleSprite3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/SimpleSprite3D.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/SlicedSprite2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/SlicedSprite2D.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/SlicedSprite2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/SlicedSprite2D.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/SlicedSprite3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/SlicedSprite3D.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/SlicedSprite3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/SlicedSprite3D.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/TiledMapAssembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/TiledMapAssembler.cpp -------------------------------------------------------------------------------- /cocos/renderer/scene/assembler/TiledMapAssembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/assembler/TiledMapAssembler.hpp -------------------------------------------------------------------------------- /cocos/renderer/scene/scene-bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/renderer/scene/scene-bindings.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/.gitignore -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/auto/jsb_cocos2dx_auto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/auto/jsb_cocos2dx_auto.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/auto/jsb_cocos2dx_auto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/auto/jsb_cocos2dx_auto.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/auto/jsb_gfx_auto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/auto/jsb_gfx_auto.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/auto/jsb_gfx_auto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/auto/jsb_gfx_auto.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/auto/jsb_renderer_auto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/auto/jsb_renderer_auto.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/auto/jsb_renderer_auto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/auto/jsb_renderer_auto.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/auto/jsb_video_auto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/auto/jsb_video_auto.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/auto/jsb_video_auto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/auto/jsb_video_auto.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/auto/jsb_webview_auto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/auto/jsb_webview_auto.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/auto/jsb_webview_auto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/auto/jsb_webview_auto.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/docs/JSB2.0-learning-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/docs/JSB2.0-learning-en.md -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/docs/JSB2.0-learning-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/docs/JSB2.0-learning-zh.md -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/docs/jsc-breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/docs/jsc-breakpoint.png -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/docs/jsc-entitlements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/docs/jsc-entitlements.png -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/docs/jsc-mac-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/docs/jsc-mac-debug.png -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/docs/jsc-security-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/docs/jsc-security-key.png -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/docs/jsc-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/docs/jsc-timeline.png -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/docs/v8-win32-debug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/docs/v8-win32-debug.jpg -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/docs/v8-win32-memory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/docs/v8-win32-memory.jpg -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/docs/v8-win32-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/docs/v8-win32-profile.jpg -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/event/CustomEventTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/event/CustomEventTypes.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/event/EventDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/event/EventDispatcher.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/event/EventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/event/EventDispatcher.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/HandleObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/HandleObject.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/HandleObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/HandleObject.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/MappingUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/MappingUtils.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/MappingUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/MappingUtils.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/Object.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/RefCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/RefCounter.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/RefCounter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/RefCounter.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/SeApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/SeApi.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/State.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/State.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/Value.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/Value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/Value.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/config.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/config.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsc/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsc/Base.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsc/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsc/Class.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsc/Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsc/Class.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsc/EJConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsc/EJConvert.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsc/Object.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsc/Object.mm -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsc/SeApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsc/SeApi.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsc/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsc/Utils.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsc/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsc/Utils.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsvm/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsvm/Class.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsvm/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsvm/Object.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsvm/SeApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsvm/SeApi.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/jsvm/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/jsvm/Utils.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/napi/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/napi/Class.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/napi/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/napi/Object.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/napi/SeApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/napi/SeApi.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/napi/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/napi/Utils.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/sm/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/sm/Base.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/sm/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/sm/Class.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/sm/Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/sm/Class.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/sm/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/sm/Object.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/sm/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/sm/Object.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/sm/SeApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/sm/SeApi.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/sm/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/sm/Utils.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/sm/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/sm/Utils.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/v8/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/v8/Base.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/v8/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/v8/Class.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/v8/Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/v8/Class.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/v8/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/v8/Object.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/v8/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/v8/Object.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/v8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/v8/README.md -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/v8/SeApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/v8/SeApi.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/v8/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/v8/Utils.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/jswrapper/v8/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/jswrapper/v8/Utils.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/manual/jsb_global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/manual/jsb_global.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/manual/jsb_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/manual/jsb_global.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/manual/jsb_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/manual/jsb_helper.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/manual/jsb_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/manual/jsb_helper.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/manual/jsb_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/manual/jsb_node.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/manual/jsb_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/manual/jsb_node.hpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/manual/jsb_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/manual/jsb_platform.h -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/manual/jsb_socketio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/manual/jsb_socketio.cpp -------------------------------------------------------------------------------- /cocos/scripting/js-bindings/manual/jsb_socketio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/scripting/js-bindings/manual/jsb_socketio.hpp -------------------------------------------------------------------------------- /cocos/storage/local-storage/LocalStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/storage/local-storage/LocalStorage.cpp -------------------------------------------------------------------------------- /cocos/storage/local-storage/LocalStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/storage/local-storage/LocalStorage.h -------------------------------------------------------------------------------- /cocos/ui/edit-box/EditBox-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/edit-box/EditBox-android.cpp -------------------------------------------------------------------------------- /cocos/ui/edit-box/EditBox-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/edit-box/EditBox-ios.mm -------------------------------------------------------------------------------- /cocos/ui/edit-box/EditBox-mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/edit-box/EditBox-mac.mm -------------------------------------------------------------------------------- /cocos/ui/edit-box/EditBox-openharmony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/edit-box/EditBox-openharmony.cpp -------------------------------------------------------------------------------- /cocos/ui/edit-box/EditBox-openharmony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/edit-box/EditBox-openharmony.h -------------------------------------------------------------------------------- /cocos/ui/edit-box/EditBox-win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/edit-box/EditBox-win32.cpp -------------------------------------------------------------------------------- /cocos/ui/edit-box/EditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/edit-box/EditBox.h -------------------------------------------------------------------------------- /cocos/ui/videoplayer/VideoPlayer-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/videoplayer/VideoPlayer-android.cpp -------------------------------------------------------------------------------- /cocos/ui/videoplayer/VideoPlayer-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/videoplayer/VideoPlayer-ios.mm -------------------------------------------------------------------------------- /cocos/ui/videoplayer/VideoPlayer-openharmony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/videoplayer/VideoPlayer-openharmony.cpp -------------------------------------------------------------------------------- /cocos/ui/videoplayer/VideoPlayer-openharmony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/videoplayer/VideoPlayer-openharmony.h -------------------------------------------------------------------------------- /cocos/ui/videoplayer/VideoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/videoplayer/VideoPlayer.h -------------------------------------------------------------------------------- /cocos/ui/webview/WebView-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/webview/WebView-inl.h -------------------------------------------------------------------------------- /cocos/ui/webview/WebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/webview/WebView.h -------------------------------------------------------------------------------- /cocos/ui/webview/WebViewImpl-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/webview/WebViewImpl-android.cpp -------------------------------------------------------------------------------- /cocos/ui/webview/WebViewImpl-android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/webview/WebViewImpl-android.h -------------------------------------------------------------------------------- /cocos/ui/webview/WebViewImpl-ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/webview/WebViewImpl-ios.h -------------------------------------------------------------------------------- /cocos/ui/webview/WebViewImpl-ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/webview/WebViewImpl-ios.mm -------------------------------------------------------------------------------- /cocos/ui/webview/WebViewImpl-openharmony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/webview/WebViewImpl-openharmony.cpp -------------------------------------------------------------------------------- /cocos/ui/webview/WebViewImpl-openharmony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/cocos/ui/webview/WebViewImpl-openharmony.h -------------------------------------------------------------------------------- /download-deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/download-deps.py -------------------------------------------------------------------------------- /extensions/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/extensions/Android.mk -------------------------------------------------------------------------------- /extensions/ExtensionExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/extensions/ExtensionExport.h -------------------------------------------------------------------------------- /extensions/ExtensionMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/extensions/ExtensionMacros.h -------------------------------------------------------------------------------- /extensions/assets-manager/AssetsManagerEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/extensions/assets-manager/AssetsManagerEx.cpp -------------------------------------------------------------------------------- /extensions/assets-manager/AssetsManagerEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/extensions/assets-manager/AssetsManagerEx.h -------------------------------------------------------------------------------- /extensions/assets-manager/CCAsyncTaskPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/extensions/assets-manager/CCAsyncTaskPool.cpp -------------------------------------------------------------------------------- /extensions/assets-manager/CCAsyncTaskPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/extensions/assets-manager/CCAsyncTaskPool.h -------------------------------------------------------------------------------- /extensions/assets-manager/CCEventAssetsManagerEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/extensions/assets-manager/CCEventAssetsManagerEx.h -------------------------------------------------------------------------------- /extensions/assets-manager/Manifest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/extensions/assets-manager/Manifest.cpp -------------------------------------------------------------------------------- /extensions/assets-manager/Manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/extensions/assets-manager/Manifest.h -------------------------------------------------------------------------------- /extensions/cocos-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/extensions/cocos-ext.h -------------------------------------------------------------------------------- /external/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/external/config.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/gulpfile.js -------------------------------------------------------------------------------- /licenses/LICENSE_CCBReader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_CCBReader.txt -------------------------------------------------------------------------------- /licenses/LICENSE_CCControlExtension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_CCControlExtension.txt -------------------------------------------------------------------------------- /licenses/LICENSE_DragonBones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_DragonBones.txt -------------------------------------------------------------------------------- /licenses/LICENSE_SocketRocket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_SocketRocket.txt -------------------------------------------------------------------------------- /licenses/LICENSE_SpiderMonkey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_SpiderMonkey.txt -------------------------------------------------------------------------------- /licenses/LICENSE_chipmunk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_chipmunk.txt -------------------------------------------------------------------------------- /licenses/LICENSE_cocos2d-x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_cocos2d-x.txt -------------------------------------------------------------------------------- /licenses/LICENSE_cocosdenshion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_cocosdenshion.txt -------------------------------------------------------------------------------- /licenses/LICENSE_curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_curl.txt -------------------------------------------------------------------------------- /licenses/LICENSE_js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_js.txt -------------------------------------------------------------------------------- /licenses/LICENSE_libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_libjpeg.txt -------------------------------------------------------------------------------- /licenses/LICENSE_libpng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_libpng.txt -------------------------------------------------------------------------------- /licenses/LICENSE_libtiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_libtiff.txt -------------------------------------------------------------------------------- /licenses/LICENSE_libwebsockets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_libwebsockets.txt -------------------------------------------------------------------------------- /licenses/LICENSE_libxml2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_libxml2.txt -------------------------------------------------------------------------------- /licenses/LICENSE_llvm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_llvm.txt -------------------------------------------------------------------------------- /licenses/LICENSE_ogg_vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_ogg_vorbis.txt -------------------------------------------------------------------------------- /licenses/LICENSE_spine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_spine.txt -------------------------------------------------------------------------------- /licenses/LICENSE_unicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_unicode.txt -------------------------------------------------------------------------------- /licenses/LICENSE_zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/licenses/LICENSE_zlib.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/package.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/setup.py -------------------------------------------------------------------------------- /templates/cocos2dx_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/templates/cocos2dx_files.json -------------------------------------------------------------------------------- /templates/js-template-default/frameworks/runtime-src/proj.android-studio/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /jniLibs 3 | -------------------------------------------------------------------------------- /templates/js-template-default/frameworks/runtime-src/proj.android-studio/instantapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /templates/js-template-default/frameworks/runtime-src/proj.harmonyos-next/entry/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.preview 3 | /build 4 | /.cxx -------------------------------------------------------------------------------- /templates/js-template-default/frameworks/runtime-src/proj.harmonyos-next/entry/src/main/resources/rawfile/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/js-template-default/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/templates/js-template-default/main.js -------------------------------------------------------------------------------- /templates/js-template-default/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/templates/js-template-default/project.json -------------------------------------------------------------------------------- /templates/js-template-default/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/templates/js-template-default/src/app.js -------------------------------------------------------------------------------- /templates/js-template-default/src/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/templates/js-template-default/src/resource.js -------------------------------------------------------------------------------- /templates/js-template-link/frameworks/runtime-src/proj.android-studio/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /jniLibs 3 | -------------------------------------------------------------------------------- /templates/js-template-link/frameworks/runtime-src/proj.android-studio/instantapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /templates/js-template-link/frameworks/runtime-src/proj.harmonyos-next/entry/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.preview 3 | /build 4 | /.cxx -------------------------------------------------------------------------------- /templates/js-template-link/frameworks/runtime-src/proj.harmonyos-next/entry/src/main/resources/rawfile/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/js-template-link/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/templates/js-template-link/main.js -------------------------------------------------------------------------------- /templates/js-template-link/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/templates/js-template-link/project.json -------------------------------------------------------------------------------- /templates/js-template-link/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/templates/js-template-link/src/app.js -------------------------------------------------------------------------------- /templates/js-template-link/src/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/templates/js-template-link/src/resource.js -------------------------------------------------------------------------------- /tools/coding-style/tailing-spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/coding-style/tailing-spaces.py -------------------------------------------------------------------------------- /tools/make-package/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/make-package/README.markdown -------------------------------------------------------------------------------- /tools/make-package/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/make-package/config.json -------------------------------------------------------------------------------- /tools/make-package/git-archive-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/make-package/git-archive-all -------------------------------------------------------------------------------- /tools/simulator/.cocos-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/.cocos-project.json -------------------------------------------------------------------------------- /tools/simulator/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/.project -------------------------------------------------------------------------------- /tools/simulator/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/config.json -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/AppEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/AppEvent.cpp -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/AppEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/AppEvent.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/AppLang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/AppLang.cpp -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/AppLang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/AppLang.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/DeviceEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/DeviceEx.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/PlayerMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/PlayerMacros.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/PlayerProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/PlayerProtocol.cpp -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/PlayerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/PlayerProtocol.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/PlayerSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/PlayerSettings.cpp -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/PlayerSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/PlayerSettings.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/PlayerUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/PlayerUtils.cpp -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/PlayerUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/PlayerUtils.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/SimulatorExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/SimulatorExport.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/cocos2dx_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/cocos2dx_extra.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/runtime/ResData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/runtime/ResData.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/lib/runtime/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/lib/runtime/Runtime.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/proj.win32/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/proj.win32/stdafx.cpp -------------------------------------------------------------------------------- /tools/simulator/libsimulator/proj.win32/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/proj.win32/stdafx.h -------------------------------------------------------------------------------- /tools/simulator/libsimulator/proj.win32/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/simulator/libsimulator/proj.win32/targetver.h -------------------------------------------------------------------------------- /tools/tojs/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/README.mdown -------------------------------------------------------------------------------- /tools/tojs/anysdk-appstore.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/anysdk-appstore.ini -------------------------------------------------------------------------------- /tools/tojs/anysdk-common.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/anysdk-common.ini -------------------------------------------------------------------------------- /tools/tojs/cocos2dx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/cocos2dx.ini -------------------------------------------------------------------------------- /tools/tojs/cocos2dx_audioengine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/cocos2dx_audioengine.ini -------------------------------------------------------------------------------- /tools/tojs/cocos2dx_dragonbones.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/cocos2dx_dragonbones.ini -------------------------------------------------------------------------------- /tools/tojs/cocos2dx_editor_support.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/cocos2dx_editor_support.ini -------------------------------------------------------------------------------- /tools/tojs/cocos2dx_extension.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/cocos2dx_extension.ini -------------------------------------------------------------------------------- /tools/tojs/cocos2dx_network.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/cocos2dx_network.ini -------------------------------------------------------------------------------- /tools/tojs/cocos2dx_particle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/cocos2dx_particle.ini -------------------------------------------------------------------------------- /tools/tojs/cocos2dx_spine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/cocos2dx_spine.ini -------------------------------------------------------------------------------- /tools/tojs/cocos2dx_video.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/cocos2dx_video.ini -------------------------------------------------------------------------------- /tools/tojs/cocos2dx_webview.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/cocos2dx_webview.ini -------------------------------------------------------------------------------- /tools/tojs/genbindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/genbindings.py -------------------------------------------------------------------------------- /tools/tojs/gfx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/gfx.ini -------------------------------------------------------------------------------- /tools/tojs/renderer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/tojs/renderer.ini -------------------------------------------------------------------------------- /tools/travis-scripts/before-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/travis-scripts/before-install.sh -------------------------------------------------------------------------------- /tools/travis-scripts/config.gitingore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/travis-scripts/config.gitingore -------------------------------------------------------------------------------- /tools/travis-scripts/for-each-file-in-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/travis-scripts/for-each-file-in-dir.sh -------------------------------------------------------------------------------- /tools/travis-scripts/generate-bindings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/travis-scripts/generate-bindings.sh -------------------------------------------------------------------------------- /tools/travis-scripts/generate-cocosfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/travis-scripts/generate-cocosfiles.sh -------------------------------------------------------------------------------- /tools/travis-scripts/generate-template-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/travis-scripts/generate-template-files.py -------------------------------------------------------------------------------- /tools/travis-scripts/run-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/tools/travis-scripts/run-script.sh -------------------------------------------------------------------------------- /utils/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/engine-native/HEAD/utils/git.js --------------------------------------------------------------------------------