Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
pandamicro committed Jun 24, 2016
0 parents commit a3e9572
Show file tree
Hide file tree
Showing 10 changed files with 10,663 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#/////////////////////////////////////////////////////////////////////////////
# Fireball Projects
#/////////////////////////////////////////////////////////////////////////////

library/
temp/
local/
build/

#/////////////////////////////////////////////////////////////////////////////
# Logs and databases
#/////////////////////////////////////////////////////////////////////////////

*.log
*.sql
*.sqlite

#/////////////////////////////////////////////////////////////////////////////
# files for debugger
#/////////////////////////////////////////////////////////////////////////////

*.sln
*.csproj
*.pidb
*.unityproj
*.suo

#/////////////////////////////////////////////////////////////////////////////
# OS generated files
#/////////////////////////////////////////////////////////////////////////////

.DS_Store
ehthumbs.db
Thumbs.db

#/////////////////////////////////////////////////////////////////////////////
# exvim files
#/////////////////////////////////////////////////////////////////////////////

*UnityVS.meta
*.err
*.err.meta
*.exvim
*.exvim.meta
*.vimentry
*.vimentry.meta
*.vimproject
*.vimproject.meta
.vimfiles.*/
.exvim.*/
quick_gen_project_*_autogen.bat
quick_gen_project_*_autogen.bat.meta
quick_gen_project_*_autogen.sh
quick_gen_project_*_autogen.sh.meta
.exvim.app

#/////////////////////////////////////////////////////////////////////////////
# webstorm files
#/////////////////////////////////////////////////////////////////////////////

.idea/
37 changes: 37 additions & 0 deletions assets/Test.fire
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"__type__": "cc.SceneAsset",
"scene": {
"__id__": 1
}
},
{
"__type__": "cc.Scene",
"_children": [
{
"__id__": 2
}
]
},
{
"__type__": "cc.Node",
"_name": "Canvas",
"_parent": {
"__id__": 1
},
"_children": [],
"_components": [
{
"__id__": 3
}
]
},
{
"__type__": "cc.Canvas",
"node": {
"__id__": 2
},
"_fitWidth": false,
"_fitHeight": true
}
]
5 changes: 5 additions & 0 deletions assets/Test.fire.meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"ver": "1.0.0",
"uuid": "7d31a626-3975-45e5-87e8-6926070e2295",
"subMetas": {}
}
5 changes: 5 additions & 0 deletions assets/resources.meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"ver": "1.0.0",
"uuid": "ee5ce6e8-e5e4-4fd6-8d22-d0ab69b1c620",
"subMetas": {}
}
25 changes: 25 additions & 0 deletions assets/resources/NewScript.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
cc.Class({
extends: cc.Component,

properties: {
// foo: {
// default: null,
// url: cc.Texture2D, // optional, default is typeof default
// serializable: true, // optional, default is true
// visible: true, // optional, default is true
// displayName: 'Foo', // optional
// readonly: false, // optional, default is false
// },
// ...
},

// use this for initialization
onLoad: function () {

},

// called every frame, uncomment this function to activate update callback
// update: function (dt) {

// },
});
6 changes: 6 additions & 0 deletions assets/resources/NewScript.js.meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "d12117fe-9758-462d-b650-13f894a9e5cb",
"isPlugin": false,
"subMetas": {}
}
Loading

0 comments on commit a3e9572

Please sign in to comment.