Skip to content

Commit 668a7be

Browse files
committed
clean history
0 parents  commit 668a7be

File tree

573 files changed

+134581
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

573 files changed

+134581
-0
lines changed

.gitignore

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
#/////////////////////////////////////////////////////////////////////////////
2+
# Fireball Projects
3+
#/////////////////////////////////////////////////////////////////////////////
4+
5+
library/
6+
temp/
7+
local/
8+
build/
9+
packages/
10+
profiles/
11+
12+
#/////////////////////////////////////////////////////////////////////////////
13+
# Logs and databases
14+
#/////////////////////////////////////////////////////////////////////////////
15+
16+
*.log
17+
*.sql
18+
*.sqlite
19+
20+
#/////////////////////////////////////////////////////////////////////////////
21+
# files for debugger
22+
#/////////////////////////////////////////////////////////////////////////////
23+
24+
*.sln
25+
*.csproj
26+
*.pidb
27+
*.unityproj
28+
*.suo
29+
30+
#/////////////////////////////////////////////////////////////////////////////
31+
# OS generated files
32+
#/////////////////////////////////////////////////////////////////////////////
33+
34+
.DS_Store
35+
ehthumbs.db
36+
Thumbs.db
37+
38+
#/////////////////////////////////////////////////////////////////////////////
39+
# exvim files
40+
#/////////////////////////////////////////////////////////////////////////////
41+
42+
*UnityVS.meta
43+
*.err
44+
*.err.meta
45+
*.exvim
46+
*.exvim.meta
47+
*.vimentry
48+
*.vimentry.meta
49+
*.vimproject
50+
*.vimproject.meta
51+
.vimfiles.*/
52+
.exvim.*/
53+
quick_gen_project_*_autogen.bat
54+
quick_gen_project_*_autogen.bat.meta
55+
quick_gen_project_*_autogen.sh
56+
quick_gen_project_*_autogen.sh.meta
57+
.exvim.app
58+
59+
#/////////////////////////////////////////////////////////////////////////////
60+
# webstorm files
61+
#/////////////////////////////////////////////////////////////////////////////
62+
63+
.idea/
64+
65+
#//////////////////////////
66+
# VS Code
67+
#//////////////////////////
68+
69+
.vscode/

README.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Examples for Cocos3D
2+
3+
## demo01
4+
5+
1. scenes/helmet: PBR material, skybox
6+
2. scenes/jellyfish: Animation, transparent material, simple prefab instantiation
7+
3. scenes/knight: Animation, light
8+
4. scenes/physics: Physics
9+
5. scenes/sponza: Rendering, particle system, light
10+
6. scenes/winter: Particle system, emitter editing
11+
12+
## demo02
13+
14+
1. scenes/anim: Animation
15+
2. scenes/audio: Audio
16+
3. scenes/head
17+
4. scenes/pbr: PBR rendering test
18+
5. scenes/phong: Phong lighting
19+
6. scenes/shadows: Shadow test
20+
21+
## simple-fps
22+
23+
A really simple and lame fps shooting game demo
24+
25+
## Contribution
26+
27+
For future contributer and maintainers, please apply to the same rigorous examination and documentation style as we have established so far.
28+
29+
It is the only way for us to reach far.
30+
31+
Every 'unpleasant surprise' encountered along the road is a big deal:
32+
33+
Either something is not working, or some designed feature is far less intuitive than what the designer thought it would.
34+
35+
So make sure to do all the followings:
36+
37+
* try to classify the problem: is it editor-related or engine-originated? Which module(s) were involved?
38+
* file an [issue](https://www.github.com/cocos-creator/3d-tasks/issues) to the relevant team
39+
* If it is a bug, clearly [document](#Documents) it in code(usually near your temporary workaround) with the issue number.
40+
* If it is a feature(or lack of one) and looks/feels strange/awkward no matter how you design the relevant system, make sure to write it down in the issue ticket with detailed explaination on your design decisions and why the engine API is not a good fit.
41+
* Remove all the workaround or temporary designs once the bug is fixed or new feature is introduced.
42+
43+
## Documents
44+
45+
If you are making new **assumptions or conventions**, or something is known not to work perfectly as expected(**known caveats**), make sure to add them here in this README.
46+
47+
If some bug is forcing you to do some hacking, workaround, or any kind of strange logic that is not immediately comprehensible, be sure to add clear explanation comments at obvious places nearby.

demo01/assets/effects.meta

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"ver": "0.0.1",
3+
"importer": "*",
4+
"imported": true,
5+
"uuid": "dc881b3a-d2c3-4180-aefb-d254c4e4b061",
6+
"files": [],
7+
"subMetas": {},
8+
"userData": {}
9+
}

0 commit comments

Comments
 (0)