├── README.md ├── game.js ├── game.json ├── js ├── libs │ ├── OrbitControls.js │ ├── symbol.js │ ├── three.min.js │ └── weapp-adapter.js └── main.js ├── models └── indienova-logo.json └── project.config.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-three-js-model/HEAD/README.md -------------------------------------------------------------------------------- /game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-three-js-model/HEAD/game.js -------------------------------------------------------------------------------- /game.json: -------------------------------------------------------------------------------- 1 | { 2 | "deviceOrientation": "portrait" 3 | } 4 | -------------------------------------------------------------------------------- /js/libs/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-three-js-model/HEAD/js/libs/OrbitControls.js -------------------------------------------------------------------------------- /js/libs/symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-three-js-model/HEAD/js/libs/symbol.js -------------------------------------------------------------------------------- /js/libs/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-three-js-model/HEAD/js/libs/three.min.js -------------------------------------------------------------------------------- /js/libs/weapp-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-three-js-model/HEAD/js/libs/weapp-adapter.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-three-js-model/HEAD/js/main.js -------------------------------------------------------------------------------- /models/indienova-logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-three-js-model/HEAD/models/indienova-logo.json -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastecho/WeChatGame-three-js-model/HEAD/project.config.json --------------------------------------------------------------------------------