├── .cocos-project.json ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Classes ├── AppDelegate.cpp ├── AppDelegate.h ├── HelloWorldScene.cpp └── HelloWorldScene.h ├── README.md ├── Resources ├── CloseNormal.png ├── CloseSelected.png ├── HelloWorld.png ├── fonts │ └── Marker Felt.ttf └── res │ └── .gitkeep ├── proj.android ├── .classpath ├── .cproject ├── .project ├── .settings │ ├── org.eclipse.cdt.codan.core.prefs │ ├── org.eclipse.cdt.core.prefs │ └── org.eclipse.ltk.core.refactoring.prefs ├── AndroidManifest.xml ├── ant.properties ├── build-cfg.json ├── build.xml ├── build_native.py ├── jni │ ├── Android.mk │ ├── Application.mk │ └── hellocpp │ │ └── main.cpp ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ └── values │ │ └── strings.xml └── src │ └── org │ └── cocos2dx │ └── cpp │ └── AppActivity.java ├── proj.ios_mac ├── ModelViewer.xcodeproj │ └── project.pbxproj ├── 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 │ └── main.m └── mac │ ├── Icon.icns │ ├── Info.plist │ ├── Prefix.pch │ └── main.cpp ├── proj.linux └── main.cpp ├── proj.win32 ├── ModelViewer.sln ├── ModelViewer.vcxproj ├── ModelViewer.vcxproj.filters ├── ModelViewer.vcxproj.user ├── build-cfg.json ├── game.rc ├── main.cpp ├── main.h ├── res │ └── game.ico └── resource.h └── proj.wp8-xaml ├── App ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png ├── EditBox.xaml ├── EditBox.xaml.cs ├── LocalizedStrings.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── ModelViewer.csproj ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx └── SplashScreenImage.jpg ├── AppComponent ├── ModelViewerComponent.vcxproj ├── ModelViewerComponent.vcxproj.filters └── src │ ├── Cocos2dRenderer.cpp │ ├── Cocos2dRenderer.h │ ├── Direct3DContentProvider.cpp │ ├── Direct3DContentProvider.h │ ├── Direct3DInterop.cpp │ ├── Direct3DInterop.h │ ├── DirectXBase.cpp │ ├── DirectXBase.h │ ├── DirectXHelper.h │ ├── EditBoxEvent.cpp │ ├── EditBoxEvent.h │ ├── pch.cpp │ └── pch.h └── ModelViewer.sln /.cocos-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_type": "cpp" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Classes/AppDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/Classes/AppDelegate.cpp -------------------------------------------------------------------------------- /Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/Classes/AppDelegate.h -------------------------------------------------------------------------------- /Classes/HelloWorldScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/Classes/HelloWorldScene.cpp -------------------------------------------------------------------------------- /Classes/HelloWorldScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/Classes/HelloWorldScene.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/README.md -------------------------------------------------------------------------------- /Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/Resources/CloseNormal.png -------------------------------------------------------------------------------- /Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/Resources/CloseSelected.png -------------------------------------------------------------------------------- /Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/Resources/HelloWorld.png -------------------------------------------------------------------------------- /Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /Resources/res/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proj.android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/.classpath -------------------------------------------------------------------------------- /proj.android/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/.cproject -------------------------------------------------------------------------------- /proj.android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/.project -------------------------------------------------------------------------------- /proj.android/.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /proj.android/.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /proj.android/.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/.settings/org.eclipse.ltk.core.refactoring.prefs -------------------------------------------------------------------------------- /proj.android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/AndroidManifest.xml -------------------------------------------------------------------------------- /proj.android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/ant.properties -------------------------------------------------------------------------------- /proj.android/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/build-cfg.json -------------------------------------------------------------------------------- /proj.android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/build.xml -------------------------------------------------------------------------------- /proj.android/build_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/build_native.py -------------------------------------------------------------------------------- /proj.android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/jni/Android.mk -------------------------------------------------------------------------------- /proj.android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/jni/Application.mk -------------------------------------------------------------------------------- /proj.android/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/jni/hellocpp/main.cpp -------------------------------------------------------------------------------- /proj.android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/proguard-project.txt -------------------------------------------------------------------------------- /proj.android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/project.properties -------------------------------------------------------------------------------- /proj.android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /proj.android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /proj.android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/res/values/strings.xml -------------------------------------------------------------------------------- /proj.android/src/org/cocos2dx/cpp/AppActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.android/src/org/cocos2dx/cpp/AppActivity.java -------------------------------------------------------------------------------- /proj.ios_mac/ModelViewer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ModelViewer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/AppController.h -------------------------------------------------------------------------------- /proj.ios_mac/ios/AppController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/AppController.mm -------------------------------------------------------------------------------- /proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Default-667h@2x.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Default-736h@3x.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Info.plist -------------------------------------------------------------------------------- /proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/Prefix.pch -------------------------------------------------------------------------------- /proj.ios_mac/ios/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/RootViewController.h -------------------------------------------------------------------------------- /proj.ios_mac/ios/RootViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/RootViewController.mm -------------------------------------------------------------------------------- /proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/ios/main.m -------------------------------------------------------------------------------- /proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /proj.ios_mac/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/mac/Info.plist -------------------------------------------------------------------------------- /proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/mac/Prefix.pch -------------------------------------------------------------------------------- /proj.ios_mac/mac/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.ios_mac/mac/main.cpp -------------------------------------------------------------------------------- /proj.linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.linux/main.cpp -------------------------------------------------------------------------------- /proj.win32/ModelViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.win32/ModelViewer.sln -------------------------------------------------------------------------------- /proj.win32/ModelViewer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.win32/ModelViewer.vcxproj -------------------------------------------------------------------------------- /proj.win32/ModelViewer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.win32/ModelViewer.vcxproj.filters -------------------------------------------------------------------------------- /proj.win32/ModelViewer.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.win32/ModelViewer.vcxproj.user -------------------------------------------------------------------------------- /proj.win32/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.win32/build-cfg.json -------------------------------------------------------------------------------- /proj.win32/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.win32/game.rc -------------------------------------------------------------------------------- /proj.win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.win32/main.cpp -------------------------------------------------------------------------------- /proj.win32/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.win32/main.h -------------------------------------------------------------------------------- /proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.win32/res/game.ico -------------------------------------------------------------------------------- /proj.win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.win32/resource.h -------------------------------------------------------------------------------- /proj.wp8-xaml/App/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/App.xaml -------------------------------------------------------------------------------- /proj.wp8-xaml/App/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/App.xaml.cs -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /proj.wp8-xaml/App/EditBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/EditBox.xaml -------------------------------------------------------------------------------- /proj.wp8-xaml/App/EditBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/EditBox.xaml.cs -------------------------------------------------------------------------------- /proj.wp8-xaml/App/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/LocalizedStrings.cs -------------------------------------------------------------------------------- /proj.wp8-xaml/App/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/MainPage.xaml -------------------------------------------------------------------------------- /proj.wp8-xaml/App/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/MainPage.xaml.cs -------------------------------------------------------------------------------- /proj.wp8-xaml/App/ModelViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/ModelViewer.csproj -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Properties/AppManifest.xml -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /proj.wp8-xaml/App/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/Resources/AppResources.resx -------------------------------------------------------------------------------- /proj.wp8-xaml/App/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/App/SplashScreenImage.jpg -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/ModelViewerComponent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/ModelViewerComponent.vcxproj -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/ModelViewerComponent.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/ModelViewerComponent.vcxproj.filters -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/Cocos2dRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/Cocos2dRenderer.cpp -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/Cocos2dRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/Cocos2dRenderer.h -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/Direct3DContentProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/Direct3DContentProvider.cpp -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/Direct3DContentProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/Direct3DContentProvider.h -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/Direct3DInterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/Direct3DInterop.cpp -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/Direct3DInterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/Direct3DInterop.h -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/DirectXBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/DirectXBase.cpp -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/DirectXBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/DirectXBase.h -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/DirectXHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/DirectXHelper.h -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/EditBoxEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/EditBoxEvent.cpp -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/EditBoxEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/EditBoxEvent.h -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /proj.wp8-xaml/AppComponent/src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/AppComponent/src/pch.h -------------------------------------------------------------------------------- /proj.wp8-xaml/ModelViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchengjiang/cocos2d-x-ModelViewer/HEAD/proj.wp8-xaml/ModelViewer.sln --------------------------------------------------------------------------------