├── .gitignore ├── AdHelper └── README.md ├── EaselJS_Box2dWeb ├── README.md ├── README_1.jpg ├── assets │ ├── balls.fla │ ├── balls.html │ ├── balls.js │ └── explosion.mp3 ├── index.html └── libs │ └── Box2dWeb-2.1.a.3.min.js ├── GettingStartedWithCreateJS ├── GettingStartedWithCreateJS.png ├── README.md ├── assets │ ├── daisy.png │ └── pop.mp3 └── index.html ├── Kaleidoscope ├── Kaleidoscope.js ├── README.md ├── README_1.jpg ├── demo.html └── imgs │ └── pic.jpg ├── LineGraph ├── README.md ├── README_1.jpg └── demo.html ├── PlanetaryGary ├── Flash │ ├── PlanetaryGary_art.fla │ ├── PlanetaryGary_art_OLD.fla │ └── README.md ├── README.md ├── README_1.jpg ├── assets │ ├── PlanetaryGary_art.js │ ├── images │ │ ├── bg-stars.png │ │ ├── frame.png │ │ ├── planet-one.png │ │ └── planet-two.png │ ├── sounds │ │ ├── BodySlam.mp3 │ │ ├── BodySlam.ogg │ │ ├── DirtSlide.mp3 │ │ ├── DirtSlide.ogg │ │ ├── EnemyHit.mp3 │ │ ├── EnemyHit.ogg │ │ ├── HitHard4.mp3 │ │ ├── HitHard4.ogg │ │ ├── LaserGunShot.mp3 │ │ ├── LaserGunShot.ogg │ │ ├── PressPlay.mp3 │ │ ├── PressPlay.ogg │ │ ├── TunnelCollision.mp3 │ │ ├── TunnelCollision.ogg │ │ ├── garywalk_chill.mp3 │ │ ├── garywalk_chill.ogg │ │ ├── jump4.mp3 │ │ └── jump4.ogg │ └── styles.css ├── index.html ├── js │ ├── Game.js │ └── GameInit.js ├── libs │ └── webgl-NEXT.combined.js └── sounds.json ├── README.md └── eLearning_Lever ├── README.md ├── README_1.jpg ├── alternateImage.png ├── demo.html └── interactive.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /AdHelper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/AdHelper/README.md -------------------------------------------------------------------------------- /EaselJS_Box2dWeb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/EaselJS_Box2dWeb/README.md -------------------------------------------------------------------------------- /EaselJS_Box2dWeb/README_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/EaselJS_Box2dWeb/README_1.jpg -------------------------------------------------------------------------------- /EaselJS_Box2dWeb/assets/balls.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/EaselJS_Box2dWeb/assets/balls.fla -------------------------------------------------------------------------------- /EaselJS_Box2dWeb/assets/balls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/EaselJS_Box2dWeb/assets/balls.html -------------------------------------------------------------------------------- /EaselJS_Box2dWeb/assets/balls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/EaselJS_Box2dWeb/assets/balls.js -------------------------------------------------------------------------------- /EaselJS_Box2dWeb/assets/explosion.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/EaselJS_Box2dWeb/assets/explosion.mp3 -------------------------------------------------------------------------------- /EaselJS_Box2dWeb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/EaselJS_Box2dWeb/index.html -------------------------------------------------------------------------------- /EaselJS_Box2dWeb/libs/Box2dWeb-2.1.a.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/EaselJS_Box2dWeb/libs/Box2dWeb-2.1.a.3.min.js -------------------------------------------------------------------------------- /GettingStartedWithCreateJS/GettingStartedWithCreateJS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/GettingStartedWithCreateJS/GettingStartedWithCreateJS.png -------------------------------------------------------------------------------- /GettingStartedWithCreateJS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/GettingStartedWithCreateJS/README.md -------------------------------------------------------------------------------- /GettingStartedWithCreateJS/assets/daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/GettingStartedWithCreateJS/assets/daisy.png -------------------------------------------------------------------------------- /GettingStartedWithCreateJS/assets/pop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/GettingStartedWithCreateJS/assets/pop.mp3 -------------------------------------------------------------------------------- /GettingStartedWithCreateJS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/GettingStartedWithCreateJS/index.html -------------------------------------------------------------------------------- /Kaleidoscope/Kaleidoscope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/Kaleidoscope/Kaleidoscope.js -------------------------------------------------------------------------------- /Kaleidoscope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/Kaleidoscope/README.md -------------------------------------------------------------------------------- /Kaleidoscope/README_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/Kaleidoscope/README_1.jpg -------------------------------------------------------------------------------- /Kaleidoscope/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/Kaleidoscope/demo.html -------------------------------------------------------------------------------- /Kaleidoscope/imgs/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/Kaleidoscope/imgs/pic.jpg -------------------------------------------------------------------------------- /LineGraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/LineGraph/README.md -------------------------------------------------------------------------------- /LineGraph/README_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/LineGraph/README_1.jpg -------------------------------------------------------------------------------- /LineGraph/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/LineGraph/demo.html -------------------------------------------------------------------------------- /PlanetaryGary/Flash/PlanetaryGary_art.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/Flash/PlanetaryGary_art.fla -------------------------------------------------------------------------------- /PlanetaryGary/Flash/PlanetaryGary_art_OLD.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/Flash/PlanetaryGary_art_OLD.fla -------------------------------------------------------------------------------- /PlanetaryGary/Flash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/Flash/README.md -------------------------------------------------------------------------------- /PlanetaryGary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/README.md -------------------------------------------------------------------------------- /PlanetaryGary/README_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/README_1.jpg -------------------------------------------------------------------------------- /PlanetaryGary/assets/PlanetaryGary_art.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/PlanetaryGary_art.js -------------------------------------------------------------------------------- /PlanetaryGary/assets/images/bg-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/images/bg-stars.png -------------------------------------------------------------------------------- /PlanetaryGary/assets/images/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/images/frame.png -------------------------------------------------------------------------------- /PlanetaryGary/assets/images/planet-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/images/planet-one.png -------------------------------------------------------------------------------- /PlanetaryGary/assets/images/planet-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/images/planet-two.png -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/BodySlam.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/BodySlam.mp3 -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/BodySlam.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/BodySlam.ogg -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/DirtSlide.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/DirtSlide.mp3 -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/DirtSlide.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/DirtSlide.ogg -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/EnemyHit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/EnemyHit.mp3 -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/EnemyHit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/EnemyHit.ogg -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/HitHard4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/HitHard4.mp3 -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/HitHard4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/HitHard4.ogg -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/LaserGunShot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/LaserGunShot.mp3 -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/LaserGunShot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/LaserGunShot.ogg -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/PressPlay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/PressPlay.mp3 -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/PressPlay.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/PressPlay.ogg -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/TunnelCollision.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/TunnelCollision.mp3 -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/TunnelCollision.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/TunnelCollision.ogg -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/garywalk_chill.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/garywalk_chill.mp3 -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/garywalk_chill.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/garywalk_chill.ogg -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/jump4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/jump4.mp3 -------------------------------------------------------------------------------- /PlanetaryGary/assets/sounds/jump4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/sounds/jump4.ogg -------------------------------------------------------------------------------- /PlanetaryGary/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/assets/styles.css -------------------------------------------------------------------------------- /PlanetaryGary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/index.html -------------------------------------------------------------------------------- /PlanetaryGary/js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/js/Game.js -------------------------------------------------------------------------------- /PlanetaryGary/js/GameInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/js/GameInit.js -------------------------------------------------------------------------------- /PlanetaryGary/libs/webgl-NEXT.combined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/libs/webgl-NEXT.combined.js -------------------------------------------------------------------------------- /PlanetaryGary/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/PlanetaryGary/sounds.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/README.md -------------------------------------------------------------------------------- /eLearning_Lever/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/eLearning_Lever/README.md -------------------------------------------------------------------------------- /eLearning_Lever/README_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/eLearning_Lever/README_1.jpg -------------------------------------------------------------------------------- /eLearning_Lever/alternateImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/eLearning_Lever/alternateImage.png -------------------------------------------------------------------------------- /eLearning_Lever/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/eLearning_Lever/demo.html -------------------------------------------------------------------------------- /eLearning_Lever/interactive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/sandbox/HEAD/eLearning_Lever/interactive.js --------------------------------------------------------------------------------