├── 2048 ├── app │ ├── factory │ │ ├── gridFactory.js │ │ └── tileFactory.js │ ├── manager │ │ ├── gameManager.js │ │ ├── htmlActuator.js │ │ ├── keyboardInputManager.js │ │ └── localStorageManager.js │ └── util │ │ └── polyfillUtil.js ├── bearcat-bootstrap.js ├── context.json ├── css │ ├── fonts │ │ ├── ClearSans-Bold-webfont.eot │ │ ├── ClearSans-Bold-webfont.svg │ │ ├── ClearSans-Bold-webfont.woff │ │ ├── ClearSans-Light-webfont.eot │ │ ├── ClearSans-Light-webfont.svg │ │ ├── ClearSans-Light-webfont.woff │ │ ├── ClearSans-Regular-webfont.eot │ │ ├── ClearSans-Regular-webfont.svg │ │ ├── ClearSans-Regular-webfont.woff │ │ └── clear-sans.css │ ├── helpers.scss │ ├── main.css │ └── main.scss ├── favicon.ico ├── index.html ├── lib │ └── bearcat.js ├── meta │ ├── apple-touch-icon.png │ ├── apple-touch-startup-image-640x1096.png │ └── apple-touch-startup-image-640x920.png └── package.json ├── .gitignore ├── .gitmodules ├── 10-seconds-example ├── README.md ├── app.js ├── app │ ├── car.js │ └── engine.js ├── bearcat-bootstrap.js ├── context.json ├── index.html ├── lib │ └── bearcat.js └── package.json ├── Left-or-right ├── README.md ├── app.js ├── app │ ├── collide.js │ ├── colorBox.js │ ├── continueactor.js │ ├── effect.js │ ├── explode.js │ ├── level1.js │ ├── main.js │ ├── naughty.js │ ├── openlevel.js │ ├── ps.js │ ├── switcheractor.js │ ├── train.js │ └── trainmodel.js ├── bearcat-bootstrap.js ├── context.json ├── index.html ├── level1.svg ├── level2.svg ├── level3.svg ├── level4.svg ├── level5.svg ├── lib │ ├── bearcat.js │ └── colorbox │ │ ├── actortraits.js │ │ ├── animate.js │ │ ├── base.js │ │ ├── canvaseventdecider.js │ │ ├── clocker.js │ │ ├── colorbox_header.js │ │ ├── colorbox_module.js │ │ ├── debug.js │ │ ├── director.js │ │ ├── frameanimation.js │ │ ├── geometry.js │ │ ├── gui │ │ ├── button.js │ │ └── slidebar.js │ │ ├── helper.js │ │ ├── level.js │ │ ├── leveltransition.js │ │ ├── model.js │ │ ├── node.js │ │ ├── oo.js │ │ ├── painter │ │ ├── honestpainter.js │ │ └── index.js │ │ ├── particle.js │ │ ├── path.js │ │ ├── pathfinding.js │ │ ├── pipe.js │ │ ├── platform.js │ │ ├── resmgr.js │ │ ├── scene.js │ │ ├── sound.js │ │ ├── transformable.js │ │ ├── util.js │ │ └── view │ │ ├── index.js │ │ ├── isometricview.js │ │ └── topview.js ├── map │ ├── level1.svg │ ├── level2.svg │ └── level3.svg └── package.json ├── README.md ├── bearcat-browserify-jquery ├── app.js ├── app │ ├── requireUtil.js │ └── testJquery.js ├── bearcat-bootstrap.js ├── bundle.js ├── context.json ├── index.html └── package.json ├── bearcat-dao-example ├── README.md ├── app.js ├── app │ ├── dao │ │ ├── authorDao.js │ │ ├── blogDao.js │ │ ├── commentDao.js │ │ └── relationDao.js │ ├── model │ │ ├── authorModel.js │ │ ├── blogAuthorModel.js │ │ ├── blogCommentsModel.js │ │ ├── blogModel.js │ │ └── commentModel.js │ └── sql │ │ └── relation.sql ├── config │ ├── dev │ │ └── mysql.json │ └── schema.sql ├── context.json └── package.json ├── bearcat-vs-AMD ├── AMD │ ├── app │ │ ├── car.js │ │ └── engine.js │ ├── index.html │ ├── lib │ │ └── require.js │ └── main.js ├── README.md └── bearcat │ ├── app │ ├── car.js │ └── engine.js │ ├── bearcat-bootstrap.js │ ├── context.json │ ├── index.html │ └── lib │ └── bearcat.js ├── browserify-markdown-editor ├── README.md ├── app.js ├── app │ ├── controller │ │ └── markDownController.js │ └── util │ │ └── requireUtil.js ├── bearcat-bootstrap.js ├── build.js ├── bundle.js ├── context.json ├── css │ └── index.css ├── index.html └── package.json ├── clumsy-bird ├── app │ ├── GUI │ │ ├── share.js │ │ └── tweet.js │ ├── entity │ │ ├── birdEntity.js │ │ ├── groundEntity.js │ │ ├── hitEntity.js │ │ └── pipeEntity.js │ ├── game.js │ ├── generator │ │ └── pipeGenerator.js │ ├── hud │ │ ├── container.js │ │ └── scoreItem.js │ ├── layer │ │ └── backgroundLayer.js │ ├── resource │ │ └── dataResouce.js │ └── screen │ │ ├── gameOverScreen.js │ │ ├── playScreen.js │ │ └── titleScreen.js ├── bearcat-bootstrap.js ├── context.json ├── data │ ├── bgm │ │ ├── .placeholder │ │ ├── theme.mp3 │ │ └── theme.ogg │ ├── css │ │ ├── addtohomescreen.css │ │ ├── gamefont.eot │ │ ├── gamefont.svg │ │ ├── gamefont.ttf │ │ ├── gamefont.woff │ │ └── index.css │ ├── img │ │ ├── .placeholder │ │ ├── bg.png │ │ ├── clumsy.png │ │ ├── favicon.ico │ │ ├── gameover.png │ │ ├── gameoverbg.png │ │ ├── getready.png │ │ ├── ground.png │ │ ├── hit.png │ │ ├── logo.png │ │ ├── new.png │ │ ├── pipe.png │ │ ├── share.png │ │ ├── touch-icon-iphone-retina.png │ │ ├── touch-icon-iphone.png │ │ └── tweet.png │ └── sfx │ │ ├── .placeholder │ │ ├── hit.mp3 │ │ ├── hit.ogg │ │ ├── lose.mp3 │ │ ├── lose.ogg │ │ ├── wing.mp3 │ │ ├── wing.ogg │ │ └── wing.wav ├── gruntfile.js ├── index.html ├── lib │ ├── addtohomescreen.min.js │ ├── bearcat.js │ ├── melonJS-1.0.2-min.js │ ├── melonJS-1.0.2.js │ └── plugins │ │ ├── Clay.js │ │ └── debugPanel.js ├── package.json └── test │ └── t.js ├── example-multipage ├── README.md ├── app │ ├── controller │ │ ├── benzCarController.js │ │ └── bmwCarController.js │ ├── model │ │ ├── benzCar.js │ │ ├── benzEngine.js │ │ ├── benzWheel.js │ │ ├── bmwCar.js │ │ ├── bmwEngine.js │ │ └── bmwWheel.js │ └── util │ │ └── printUtil.js ├── bearcat-bootstrap.js ├── car_BMW.html ├── car_benz.html ├── context.json ├── images │ ├── benz.jpg │ ├── bmw.jpg │ └── car.png └── lib │ └── bearcat.js ├── package.json └── quick-example ├── README.md ├── app.js ├── app ├── car.js ├── engine.js └── wheel.js ├── bearcat-bootstrap.js ├── context.json ├── index.html ├── lib └── bearcat.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/.gitmodules -------------------------------------------------------------------------------- /10-seconds-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/10-seconds-example/README.md -------------------------------------------------------------------------------- /10-seconds-example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/10-seconds-example/app.js -------------------------------------------------------------------------------- /10-seconds-example/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/10-seconds-example/app/car.js -------------------------------------------------------------------------------- /10-seconds-example/app/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/10-seconds-example/app/engine.js -------------------------------------------------------------------------------- /10-seconds-example/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/10-seconds-example/bearcat-bootstrap.js -------------------------------------------------------------------------------- /10-seconds-example/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/10-seconds-example/context.json -------------------------------------------------------------------------------- /10-seconds-example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/10-seconds-example/index.html -------------------------------------------------------------------------------- /10-seconds-example/lib/bearcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/10-seconds-example/lib/bearcat.js -------------------------------------------------------------------------------- /10-seconds-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/10-seconds-example/package.json -------------------------------------------------------------------------------- /2048/app/factory/gridFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/app/factory/gridFactory.js -------------------------------------------------------------------------------- /2048/app/factory/tileFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/app/factory/tileFactory.js -------------------------------------------------------------------------------- /2048/app/manager/gameManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/app/manager/gameManager.js -------------------------------------------------------------------------------- /2048/app/manager/htmlActuator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/app/manager/htmlActuator.js -------------------------------------------------------------------------------- /2048/app/manager/keyboardInputManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/app/manager/keyboardInputManager.js -------------------------------------------------------------------------------- /2048/app/manager/localStorageManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/app/manager/localStorageManager.js -------------------------------------------------------------------------------- /2048/app/util/polyfillUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/app/util/polyfillUtil.js -------------------------------------------------------------------------------- /2048/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/bearcat-bootstrap.js -------------------------------------------------------------------------------- /2048/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/context.json -------------------------------------------------------------------------------- /2048/css/fonts/ClearSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/fonts/ClearSans-Bold-webfont.eot -------------------------------------------------------------------------------- /2048/css/fonts/ClearSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/fonts/ClearSans-Bold-webfont.svg -------------------------------------------------------------------------------- /2048/css/fonts/ClearSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/fonts/ClearSans-Bold-webfont.woff -------------------------------------------------------------------------------- /2048/css/fonts/ClearSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/fonts/ClearSans-Light-webfont.eot -------------------------------------------------------------------------------- /2048/css/fonts/ClearSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/fonts/ClearSans-Light-webfont.svg -------------------------------------------------------------------------------- /2048/css/fonts/ClearSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/fonts/ClearSans-Light-webfont.woff -------------------------------------------------------------------------------- /2048/css/fonts/ClearSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/fonts/ClearSans-Regular-webfont.eot -------------------------------------------------------------------------------- /2048/css/fonts/ClearSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/fonts/ClearSans-Regular-webfont.svg -------------------------------------------------------------------------------- /2048/css/fonts/ClearSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/fonts/ClearSans-Regular-webfont.woff -------------------------------------------------------------------------------- /2048/css/fonts/clear-sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/fonts/clear-sans.css -------------------------------------------------------------------------------- /2048/css/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/helpers.scss -------------------------------------------------------------------------------- /2048/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/main.css -------------------------------------------------------------------------------- /2048/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/css/main.scss -------------------------------------------------------------------------------- /2048/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/favicon.ico -------------------------------------------------------------------------------- /2048/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/index.html -------------------------------------------------------------------------------- /2048/lib/bearcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/lib/bearcat.js -------------------------------------------------------------------------------- /2048/meta/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/meta/apple-touch-icon.png -------------------------------------------------------------------------------- /2048/meta/apple-touch-startup-image-640x1096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/meta/apple-touch-startup-image-640x1096.png -------------------------------------------------------------------------------- /2048/meta/apple-touch-startup-image-640x920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/2048/meta/apple-touch-startup-image-640x920.png -------------------------------------------------------------------------------- /2048/package.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Left-or-right/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/README.md -------------------------------------------------------------------------------- /Left-or-right/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app.js -------------------------------------------------------------------------------- /Left-or-right/app/collide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/collide.js -------------------------------------------------------------------------------- /Left-or-right/app/colorBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/colorBox.js -------------------------------------------------------------------------------- /Left-or-right/app/continueactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/continueactor.js -------------------------------------------------------------------------------- /Left-or-right/app/effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/effect.js -------------------------------------------------------------------------------- /Left-or-right/app/explode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/explode.js -------------------------------------------------------------------------------- /Left-or-right/app/level1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/level1.js -------------------------------------------------------------------------------- /Left-or-right/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/main.js -------------------------------------------------------------------------------- /Left-or-right/app/naughty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/naughty.js -------------------------------------------------------------------------------- /Left-or-right/app/openlevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/openlevel.js -------------------------------------------------------------------------------- /Left-or-right/app/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/ps.js -------------------------------------------------------------------------------- /Left-or-right/app/switcheractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/switcheractor.js -------------------------------------------------------------------------------- /Left-or-right/app/train.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/train.js -------------------------------------------------------------------------------- /Left-or-right/app/trainmodel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/app/trainmodel.js -------------------------------------------------------------------------------- /Left-or-right/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/bearcat-bootstrap.js -------------------------------------------------------------------------------- /Left-or-right/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/context.json -------------------------------------------------------------------------------- /Left-or-right/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/index.html -------------------------------------------------------------------------------- /Left-or-right/level1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/level1.svg -------------------------------------------------------------------------------- /Left-or-right/level2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/level2.svg -------------------------------------------------------------------------------- /Left-or-right/level3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/level3.svg -------------------------------------------------------------------------------- /Left-or-right/level4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/level4.svg -------------------------------------------------------------------------------- /Left-or-right/level5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/level5.svg -------------------------------------------------------------------------------- /Left-or-right/lib/bearcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/bearcat.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/actortraits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/actortraits.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/animate.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/base.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/canvaseventdecider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/canvaseventdecider.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/clocker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/clocker.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/colorbox_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/colorbox_header.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/colorbox_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/colorbox_module.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/debug.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/director.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/director.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/frameanimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/frameanimation.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/geometry.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/gui/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/gui/button.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/gui/slidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/gui/slidebar.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/helper.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/level.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/leveltransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/leveltransition.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/model.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/node.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/oo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/oo.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/painter/honestpainter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/painter/honestpainter.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/painter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/painter/index.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/particle.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/path.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/pathfinding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/pathfinding.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/pipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/pipe.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/platform.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/resmgr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/resmgr.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/scene.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/sound.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/transformable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/transformable.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/util.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/view/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/view/index.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/view/isometricview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/view/isometricview.js -------------------------------------------------------------------------------- /Left-or-right/lib/colorbox/view/topview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/lib/colorbox/view/topview.js -------------------------------------------------------------------------------- /Left-or-right/map/level1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/map/level1.svg -------------------------------------------------------------------------------- /Left-or-right/map/level2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/map/level2.svg -------------------------------------------------------------------------------- /Left-or-right/map/level3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/map/level3.svg -------------------------------------------------------------------------------- /Left-or-right/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/Left-or-right/package.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/README.md -------------------------------------------------------------------------------- /bearcat-browserify-jquery/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-browserify-jquery/app.js -------------------------------------------------------------------------------- /bearcat-browserify-jquery/app/requireUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-browserify-jquery/app/requireUtil.js -------------------------------------------------------------------------------- /bearcat-browserify-jquery/app/testJquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-browserify-jquery/app/testJquery.js -------------------------------------------------------------------------------- /bearcat-browserify-jquery/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-browserify-jquery/bearcat-bootstrap.js -------------------------------------------------------------------------------- /bearcat-browserify-jquery/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-browserify-jquery/bundle.js -------------------------------------------------------------------------------- /bearcat-browserify-jquery/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-browserify-jquery/context.json -------------------------------------------------------------------------------- /bearcat-browserify-jquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-browserify-jquery/index.html -------------------------------------------------------------------------------- /bearcat-browserify-jquery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-browserify-jquery/package.json -------------------------------------------------------------------------------- /bearcat-dao-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/README.md -------------------------------------------------------------------------------- /bearcat-dao-example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/app.js -------------------------------------------------------------------------------- /bearcat-dao-example/app/dao/authorDao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/app/dao/authorDao.js -------------------------------------------------------------------------------- /bearcat-dao-example/app/dao/blogDao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/app/dao/blogDao.js -------------------------------------------------------------------------------- /bearcat-dao-example/app/dao/commentDao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/app/dao/commentDao.js -------------------------------------------------------------------------------- /bearcat-dao-example/app/dao/relationDao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/app/dao/relationDao.js -------------------------------------------------------------------------------- /bearcat-dao-example/app/model/authorModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/app/model/authorModel.js -------------------------------------------------------------------------------- /bearcat-dao-example/app/model/blogAuthorModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/app/model/blogAuthorModel.js -------------------------------------------------------------------------------- /bearcat-dao-example/app/model/blogCommentsModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/app/model/blogCommentsModel.js -------------------------------------------------------------------------------- /bearcat-dao-example/app/model/blogModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/app/model/blogModel.js -------------------------------------------------------------------------------- /bearcat-dao-example/app/model/commentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/app/model/commentModel.js -------------------------------------------------------------------------------- /bearcat-dao-example/app/sql/relation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/app/sql/relation.sql -------------------------------------------------------------------------------- /bearcat-dao-example/config/dev/mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/config/dev/mysql.json -------------------------------------------------------------------------------- /bearcat-dao-example/config/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/config/schema.sql -------------------------------------------------------------------------------- /bearcat-dao-example/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/context.json -------------------------------------------------------------------------------- /bearcat-dao-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-dao-example/package.json -------------------------------------------------------------------------------- /bearcat-vs-AMD/AMD/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-vs-AMD/AMD/app/car.js -------------------------------------------------------------------------------- /bearcat-vs-AMD/AMD/app/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-vs-AMD/AMD/app/engine.js -------------------------------------------------------------------------------- /bearcat-vs-AMD/AMD/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-vs-AMD/AMD/index.html -------------------------------------------------------------------------------- /bearcat-vs-AMD/AMD/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-vs-AMD/AMD/lib/require.js -------------------------------------------------------------------------------- /bearcat-vs-AMD/AMD/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-vs-AMD/AMD/main.js -------------------------------------------------------------------------------- /bearcat-vs-AMD/README.md: -------------------------------------------------------------------------------- 1 | ## bearcat-vs-AMD -------------------------------------------------------------------------------- /bearcat-vs-AMD/bearcat/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-vs-AMD/bearcat/app/car.js -------------------------------------------------------------------------------- /bearcat-vs-AMD/bearcat/app/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-vs-AMD/bearcat/app/engine.js -------------------------------------------------------------------------------- /bearcat-vs-AMD/bearcat/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-vs-AMD/bearcat/bearcat-bootstrap.js -------------------------------------------------------------------------------- /bearcat-vs-AMD/bearcat/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-vs-AMD/bearcat/context.json -------------------------------------------------------------------------------- /bearcat-vs-AMD/bearcat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-vs-AMD/bearcat/index.html -------------------------------------------------------------------------------- /bearcat-vs-AMD/bearcat/lib/bearcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/bearcat-vs-AMD/bearcat/lib/bearcat.js -------------------------------------------------------------------------------- /browserify-markdown-editor/README.md: -------------------------------------------------------------------------------- 1 | ## browserify-markdown-editor -------------------------------------------------------------------------------- /browserify-markdown-editor/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/browserify-markdown-editor/app.js -------------------------------------------------------------------------------- /browserify-markdown-editor/app/controller/markDownController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/browserify-markdown-editor/app/controller/markDownController.js -------------------------------------------------------------------------------- /browserify-markdown-editor/app/util/requireUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/browserify-markdown-editor/app/util/requireUtil.js -------------------------------------------------------------------------------- /browserify-markdown-editor/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/browserify-markdown-editor/bearcat-bootstrap.js -------------------------------------------------------------------------------- /browserify-markdown-editor/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/browserify-markdown-editor/build.js -------------------------------------------------------------------------------- /browserify-markdown-editor/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/browserify-markdown-editor/bundle.js -------------------------------------------------------------------------------- /browserify-markdown-editor/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/browserify-markdown-editor/context.json -------------------------------------------------------------------------------- /browserify-markdown-editor/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/browserify-markdown-editor/css/index.css -------------------------------------------------------------------------------- /browserify-markdown-editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/browserify-markdown-editor/index.html -------------------------------------------------------------------------------- /browserify-markdown-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/browserify-markdown-editor/package.json -------------------------------------------------------------------------------- /clumsy-bird/app/GUI/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/GUI/share.js -------------------------------------------------------------------------------- /clumsy-bird/app/GUI/tweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/GUI/tweet.js -------------------------------------------------------------------------------- /clumsy-bird/app/entity/birdEntity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/entity/birdEntity.js -------------------------------------------------------------------------------- /clumsy-bird/app/entity/groundEntity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/entity/groundEntity.js -------------------------------------------------------------------------------- /clumsy-bird/app/entity/hitEntity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/entity/hitEntity.js -------------------------------------------------------------------------------- /clumsy-bird/app/entity/pipeEntity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/entity/pipeEntity.js -------------------------------------------------------------------------------- /clumsy-bird/app/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/game.js -------------------------------------------------------------------------------- /clumsy-bird/app/generator/pipeGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/generator/pipeGenerator.js -------------------------------------------------------------------------------- /clumsy-bird/app/hud/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/hud/container.js -------------------------------------------------------------------------------- /clumsy-bird/app/hud/scoreItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/hud/scoreItem.js -------------------------------------------------------------------------------- /clumsy-bird/app/layer/backgroundLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/layer/backgroundLayer.js -------------------------------------------------------------------------------- /clumsy-bird/app/resource/dataResouce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/resource/dataResouce.js -------------------------------------------------------------------------------- /clumsy-bird/app/screen/gameOverScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/screen/gameOverScreen.js -------------------------------------------------------------------------------- /clumsy-bird/app/screen/playScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/screen/playScreen.js -------------------------------------------------------------------------------- /clumsy-bird/app/screen/titleScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/app/screen/titleScreen.js -------------------------------------------------------------------------------- /clumsy-bird/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/bearcat-bootstrap.js -------------------------------------------------------------------------------- /clumsy-bird/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/context.json -------------------------------------------------------------------------------- /clumsy-bird/data/bgm/.placeholder: -------------------------------------------------------------------------------- 1 | docs will be placed here when built 2 | -------------------------------------------------------------------------------- /clumsy-bird/data/bgm/theme.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/bgm/theme.mp3 -------------------------------------------------------------------------------- /clumsy-bird/data/bgm/theme.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/bgm/theme.ogg -------------------------------------------------------------------------------- /clumsy-bird/data/css/addtohomescreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/css/addtohomescreen.css -------------------------------------------------------------------------------- /clumsy-bird/data/css/gamefont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/css/gamefont.eot -------------------------------------------------------------------------------- /clumsy-bird/data/css/gamefont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/css/gamefont.svg -------------------------------------------------------------------------------- /clumsy-bird/data/css/gamefont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/css/gamefont.ttf -------------------------------------------------------------------------------- /clumsy-bird/data/css/gamefont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/css/gamefont.woff -------------------------------------------------------------------------------- /clumsy-bird/data/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/css/index.css -------------------------------------------------------------------------------- /clumsy-bird/data/img/.placeholder: -------------------------------------------------------------------------------- 1 | docs will be placed here when built 2 | -------------------------------------------------------------------------------- /clumsy-bird/data/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/bg.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/clumsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/clumsy.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/favicon.ico -------------------------------------------------------------------------------- /clumsy-bird/data/img/gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/gameover.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/gameoverbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/gameoverbg.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/getready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/getready.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/ground.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/hit.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/logo.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/new.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/pipe.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/share.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/touch-icon-iphone-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/touch-icon-iphone-retina.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/touch-icon-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/touch-icon-iphone.png -------------------------------------------------------------------------------- /clumsy-bird/data/img/tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/img/tweet.png -------------------------------------------------------------------------------- /clumsy-bird/data/sfx/.placeholder: -------------------------------------------------------------------------------- 1 | docs will be placed here when built 2 | -------------------------------------------------------------------------------- /clumsy-bird/data/sfx/hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/sfx/hit.mp3 -------------------------------------------------------------------------------- /clumsy-bird/data/sfx/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/sfx/hit.ogg -------------------------------------------------------------------------------- /clumsy-bird/data/sfx/lose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/sfx/lose.mp3 -------------------------------------------------------------------------------- /clumsy-bird/data/sfx/lose.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/sfx/lose.ogg -------------------------------------------------------------------------------- /clumsy-bird/data/sfx/wing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/sfx/wing.mp3 -------------------------------------------------------------------------------- /clumsy-bird/data/sfx/wing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/sfx/wing.ogg -------------------------------------------------------------------------------- /clumsy-bird/data/sfx/wing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/data/sfx/wing.wav -------------------------------------------------------------------------------- /clumsy-bird/gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/gruntfile.js -------------------------------------------------------------------------------- /clumsy-bird/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/index.html -------------------------------------------------------------------------------- /clumsy-bird/lib/addtohomescreen.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/lib/addtohomescreen.min.js -------------------------------------------------------------------------------- /clumsy-bird/lib/bearcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/lib/bearcat.js -------------------------------------------------------------------------------- /clumsy-bird/lib/melonJS-1.0.2-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/lib/melonJS-1.0.2-min.js -------------------------------------------------------------------------------- /clumsy-bird/lib/melonJS-1.0.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/lib/melonJS-1.0.2.js -------------------------------------------------------------------------------- /clumsy-bird/lib/plugins/Clay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/lib/plugins/Clay.js -------------------------------------------------------------------------------- /clumsy-bird/lib/plugins/debugPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/lib/plugins/debugPanel.js -------------------------------------------------------------------------------- /clumsy-bird/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/package.json -------------------------------------------------------------------------------- /clumsy-bird/test/t.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/clumsy-bird/test/t.js -------------------------------------------------------------------------------- /example-multipage/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-multipage/app/controller/benzCarController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/app/controller/benzCarController.js -------------------------------------------------------------------------------- /example-multipage/app/controller/bmwCarController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/app/controller/bmwCarController.js -------------------------------------------------------------------------------- /example-multipage/app/model/benzCar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/app/model/benzCar.js -------------------------------------------------------------------------------- /example-multipage/app/model/benzEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/app/model/benzEngine.js -------------------------------------------------------------------------------- /example-multipage/app/model/benzWheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/app/model/benzWheel.js -------------------------------------------------------------------------------- /example-multipage/app/model/bmwCar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/app/model/bmwCar.js -------------------------------------------------------------------------------- /example-multipage/app/model/bmwEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/app/model/bmwEngine.js -------------------------------------------------------------------------------- /example-multipage/app/model/bmwWheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/app/model/bmwWheel.js -------------------------------------------------------------------------------- /example-multipage/app/util/printUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/app/util/printUtil.js -------------------------------------------------------------------------------- /example-multipage/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/bearcat-bootstrap.js -------------------------------------------------------------------------------- /example-multipage/car_BMW.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/car_BMW.html -------------------------------------------------------------------------------- /example-multipage/car_benz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/car_benz.html -------------------------------------------------------------------------------- /example-multipage/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/context.json -------------------------------------------------------------------------------- /example-multipage/images/benz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/images/benz.jpg -------------------------------------------------------------------------------- /example-multipage/images/bmw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/images/bmw.jpg -------------------------------------------------------------------------------- /example-multipage/images/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/images/car.png -------------------------------------------------------------------------------- /example-multipage/lib/bearcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/example-multipage/lib/bearcat.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /quick-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/quick-example/README.md -------------------------------------------------------------------------------- /quick-example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/quick-example/app.js -------------------------------------------------------------------------------- /quick-example/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/quick-example/app/car.js -------------------------------------------------------------------------------- /quick-example/app/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/quick-example/app/engine.js -------------------------------------------------------------------------------- /quick-example/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/quick-example/app/wheel.js -------------------------------------------------------------------------------- /quick-example/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/quick-example/bearcat-bootstrap.js -------------------------------------------------------------------------------- /quick-example/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/quick-example/context.json -------------------------------------------------------------------------------- /quick-example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/quick-example/index.html -------------------------------------------------------------------------------- /quick-example/lib/bearcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/quick-example/lib/bearcat.js -------------------------------------------------------------------------------- /quick-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat-examples/HEAD/quick-example/package.json --------------------------------------------------------------------------------