Files
GDevelop/SharedLibs/ThreeAddons/package.json
T
AlexandreS cf374737fc Add support for built-in 3D games (#5285)
* This provides new 3D objects: 3D Box (perfect to create walls, floors, or billboards) and 3D Model (to import objects created in a 3D modeling app).
* 2D and 3D can be mixed in a same game. Each layer of a game can contain 2D objects, 3D objects or a mix of both.
* This allows to build 2D games, 2.5D games and full 3D games: platformers, racing games, FPS, hyper casual games. It's easy to start adding 3D objects to an existing 2D game.
* You can set up a light by adding an ambient light and/or directional light in the effects of a 3D layer. 3D objects can be configured to react to light or ignore it.
* In the future, support for 3D objects will be improved: light objects, animations, etc...
2023-05-16 17:37:49 +02:00

37 lines
726 B
JSON

{
"name": "three-addons",
"version": "0.0.0",
"license": "MIT",
"description": "",
"main": "dist/ThreeAddons.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "rollup -c",
"format": "prettier --write \"src/**/*.ts\"",
"check-format": "prettier --list-different \"src/**/*.ts\""
},
"dependencies": {
},
"devDependencies": {
"three": "0.151.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.66.1",
"@rollup/plugin-terser": "^0.4.0",
"prettier": "2.1.2"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [],
"author": "",
"contributors": [],
"bugs": {
"url": ""
},
"homepage": ""
}