Permalink
Please sign in to comment.
Browse files
Reformat source to use tabs for greater visual clarity
Also fix a couple of orphaned, undocumented properties
- Loading branch information...
Showing
with
3,493 additions
and 3,267 deletions.
- +23 −23 bower.json
- +39 −23 build/kiwi.d.ts
- +34 −25 build/kiwi.js
- +6 −6 docs/classes/Kiwi.CameraManager.html
- +2 −2 docs/classes/Kiwi.ComponentManager.html
- +29 −29 docs/classes/Kiwi.Components.ArcadePhysics.html
- +12 −12 docs/classes/Kiwi.Components.Box.html
- +1 −1 docs/classes/Kiwi.Components.Input.html
- +5 −5 docs/classes/Kiwi.GameManager.html
- +1 −1 docs/classes/Kiwi.GameObjects.Sprite.html
- +13 −13 docs/classes/Kiwi.GameObjects.Textfield.html
- +13 −13 docs/classes/Kiwi.GameObjects.Tilemap.TileMap.html
- +13 −13 docs/classes/Kiwi.GameObjects.Tilemap.TileMapLayer.html
- +7 −7 docs/classes/Kiwi.GameObjects.Tilemap.TileType.html
- +1 −1 docs/classes/Kiwi.Geom.Ray.html
- +1 −1 docs/classes/Kiwi.Group.html
- +19 −19 docs/classes/Kiwi.Input.Touch.html
- +12 −12 docs/classes/Kiwi.PluginManager.html
- +89 −35 docs/classes/Kiwi.Renderers.GLRenderManager.html
- +17 −17 docs/classes/Kiwi.Renderers.GLTextureManager.html
- +66 −12 docs/classes/Kiwi.Renderers.GLTextureWrapper.html
- +15 −15 docs/classes/Kiwi.Renderers.Renderer.html
- +23 −23 docs/classes/Kiwi.Renderers.TextureAtlasRenderer.html
- +10 −10 docs/classes/Kiwi.Shaders.ShaderManager.html
- +16 −16 docs/classes/Kiwi.Shaders.ShaderPair.html
- +12 −12 docs/classes/Kiwi.Shaders.TextureAtlasShader.html
- +9 −9 docs/classes/Kiwi.Sound.Audio.html
- +68 −14 docs/classes/Kiwi.Sound.AudioManager.html
- +6 −6 docs/classes/Kiwi.Stage.html
- +23 −23 docs/classes/Kiwi.State.html
- +4 −4 docs/classes/Kiwi.StateManager.html
- +372 −330 docs/data.json
- +226 −228 docs/files/src_Kiwi.ts.html
- +494 −494 docs/files/src_animations_Animation.ts.html
- +55 −54 docs/files/src_animations_Sequence.ts.html
- +559 −559 docs/files/src_animations_tweens_Tween.ts.html
- +184 −184 docs/files/src_animations_tweens_TweenManager.ts.html
- +54 −54 docs/files/src_animations_tweens_easing_Back.ts.html
- +66 −66 docs/files/src_animations_tweens_easing_Bounce.ts.html
- +49 −49 docs/files/src_animations_tweens_easing_Circular.ts.html
- +51 −51 docs/files/src_animations_tweens_easing_Cubic.ts.html
- +66 −66 docs/files/src_animations_tweens_easing_Elastic.ts.html
- +54 −54 docs/files/src_animations_tweens_easing_Exponential.ts.html
- +27 −27 docs/files/src_animations_tweens_easing_Linear.ts.html
- +52 −52 docs/files/src_animations_tweens_easing_Quadratic.ts.html
- +51 −51 docs/files/src_animations_tweens_easing_Quartic.ts.html
- +51 −51 docs/files/src_animations_tweens_easing_Quintic.ts.html
- +50 −50 docs/files/src_animations_tweens_easing_Sinusoidal.ts.html
- +443 −445 docs/files/src_components_AnimationManager.ts.html
46
bower.json
@@ -1,25 +1,25 @@ | ||
{ | ||
- "name": "Kiwi.js", | ||
- "version": "1.1.1", | ||
- "homepage": "git://github.com:gamelab/kiwi.js.git", | ||
- "authors": [ | ||
- "GameLab" | ||
- ], | ||
- "description": "Kiwi.js is a Javascript/Typescript library for creating HTML5 games.", | ||
- "main": "build/kiwi.min.js", | ||
- "keywords": [ | ||
- "game", | ||
- "library", | ||
- "html5", | ||
- "typescript", | ||
- "javascript" | ||
- ], | ||
- "license": "MIT", | ||
- "ignore": [ | ||
- "**/.*", | ||
- "node_modules", | ||
- "bower_components", | ||
- "test", | ||
- "tests" | ||
- ] | ||
+ "name": "Kiwi.js", | ||
+ "version": "1.1.1", | ||
+ "homepage": "git://github.com:gamelab/kiwi.js.git", | ||
+ "authors": [ | ||
+ "GameLab" | ||
+ ], | ||
+ "description": "Kiwi.js is a Javascript/Typescript library for creating HTML5 games.", | ||
+ "main": "build/kiwi.min.js", | ||
+ "keywords": [ | ||
+ "game", | ||
+ "library", | ||
+ "html5", | ||
+ "typescript", | ||
+ "javascript" | ||
+ ], | ||
+ "license": "MIT", | ||
+ "ignore": [ | ||
+ "**/.*", | ||
+ "node_modules", | ||
+ "bower_components", | ||
+ "test", | ||
+ "tests" | ||
+ ] | ||
} |
62
build/kiwi.d.ts
59
build/kiwi.js
12
docs/classes/Kiwi.CameraManager.html
4
docs/classes/Kiwi.ComponentManager.html
58
docs/classes/Kiwi.Components.ArcadePhysics.html
24
docs/classes/Kiwi.Components.Box.html
2
docs/classes/Kiwi.Components.Input.html
10
docs/classes/Kiwi.GameManager.html
2
docs/classes/Kiwi.GameObjects.Sprite.html
26
docs/classes/Kiwi.GameObjects.Textfield.html
26
docs/classes/Kiwi.GameObjects.Tilemap.TileMap.html
26
docs/classes/Kiwi.GameObjects.Tilemap.TileMapLayer.html
14
docs/classes/Kiwi.GameObjects.Tilemap.TileType.html
2
docs/classes/Kiwi.Geom.Ray.html
2
docs/classes/Kiwi.Group.html
38
docs/classes/Kiwi.Input.Touch.html
24
docs/classes/Kiwi.PluginManager.html
124
docs/classes/Kiwi.Renderers.GLRenderManager.html
34
docs/classes/Kiwi.Renderers.GLTextureManager.html
78
docs/classes/Kiwi.Renderers.GLTextureWrapper.html
30
docs/classes/Kiwi.Renderers.Renderer.html
46
docs/classes/Kiwi.Renderers.TextureAtlasRenderer.html
20
docs/classes/Kiwi.Shaders.ShaderManager.html
32
docs/classes/Kiwi.Shaders.ShaderPair.html
24
docs/classes/Kiwi.Shaders.TextureAtlasShader.html
18
docs/classes/Kiwi.Sound.Audio.html
82
docs/classes/Kiwi.Sound.AudioManager.html
12
docs/classes/Kiwi.Stage.html
46
docs/classes/Kiwi.State.html
8
docs/classes/Kiwi.StateManager.html
702
docs/data.json
372 additions,
330 deletions
not shown because the diff is too large. Please use a local Git client to view these changes.
454
docs/files/src_Kiwi.ts.html
988
docs/files/src_animations_Animation.ts.html
109
docs/files/src_animations_Sequence.ts.html
1,118
docs/files/src_animations_tweens_Tween.ts.html
368
docs/files/src_animations_tweens_TweenManager.ts.html
108
docs/files/src_animations_tweens_easing_Back.ts.html
132
docs/files/src_animations_tweens_easing_Bounce.ts.html
98
docs/files/src_animations_tweens_easing_Circular.ts.html
102
docs/files/src_animations_tweens_easing_Cubic.ts.html
132
docs/files/src_animations_tweens_easing_Elastic.ts.html
108
docs/files/src_animations_tweens_easing_Exponential.ts.html
54
docs/files/src_animations_tweens_easing_Linear.ts.html
104
docs/files/src_animations_tweens_easing_Quadratic.ts.html
102
docs/files/src_animations_tweens_easing_Quartic.ts.html
102
docs/files/src_animations_tweens_easing_Quintic.ts.html
100
docs/files/src_animations_tweens_easing_Sinusoidal.ts.html
888
docs/files/src_components_AnimationManager.ts.html
0
docs/files/src_components_ArcadePhysics.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_components_Box.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_components_Input.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_components_Sound.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_Camera.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_CameraManager.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_Component.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_ComponentManager.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_Entity.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_Game.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_Group.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_IChild.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_PluginManager.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_Signal.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_SignalBinding.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_Stage.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_State.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_StateConfig.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_core_StateManager.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_file_AudioFile.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_file_DataFile.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_file_DataLibrary.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_file_File.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_file_FileStore.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_file_Loader.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_file_TextureFile.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_gameobjects_Sprite.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_gameobjects_StaticImage.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_gameobjects_Textfield.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_gameobjects_tilemap_TileMap.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_gameobjects_tilemap_TileMapLayer.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_gameobjects_tilemap_TileType.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_geom_AABB.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_geom_Circle.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_geom_Intersect.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_geom_IntersectResult.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_geom_Line.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_geom_Matrix.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_geom_Point.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_geom_Ray.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_geom_Rectangle.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_geom_Transform.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_geom_Vector2.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_HUDDisplay.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_HUDManager.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_HUDWidget.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_components_Counter.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_components_Time.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_components_WidgetInput.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_widgets_Bar.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_widgets_BasicScore.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_widgets_Button.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_widgets_Icon.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_widgets_IconBar.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_widgets_Menu.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_widgets_MenuItem.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_widgets_TextField.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_hud_widgets_Time.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_input_Finger.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_input_InputManager.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_input_Key.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_input_Keyboard.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_input_Keycodes.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_input_Mouse.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_input_MouseCursor.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_input_Pointer.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_input_Touch.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_CanvasRenderer.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_GLArrayBuffer.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_GLBlendMode.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_GLElementArrayBuffer.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_GLRenderManager.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_GLShaderManager.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_GLTextureManager.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_GLTextureWrapper.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_renderers_Renderer.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_renderers_TextureAtlasRenderer.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_shaders_ShaderPair.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_render_shaders_TextureAtlasShader.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_sound_Audio.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_sound_AudioLibrary.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_sound_AudioManager.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_system_Bootstrap.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_system_Device.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_textures_SingleImage.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_textures_SpriteSheet.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_textures_TextureAtlas.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_textures_TextureLibrary.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_time_Clock.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_time_ClockManager.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_time_MasterClock.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_time_Timer.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_time_TimerEvent.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_utils_Canvas.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_utils_Common.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_utils_GameMath.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_utils_Log.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_utils_RandomDataGenerator.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_utils_RequestAnimationFrame.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/files/src_utils_Version.ts.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/modules/GameObjects.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/modules/Kiwi.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/modules/Renderers.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
docs/modules/Shaders.html
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
gruntfile.js
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
package.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/Kiwi.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/Animation.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/Sequence.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/Tween.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/TweenManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/easing/Back.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/easing/Bounce.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/easing/Circular.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/easing/Cubic.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/easing/Elastic.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/easing/Exponential.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/easing/Linear.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/easing/Quadratic.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/easing/Quartic.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/easing/Quintic.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/animations/tweens/easing/Sinusoidal.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/components/AnimationManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/components/ArcadePhysics.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/components/Box.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/components/Input.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/components/Sound.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/Camera.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/CameraManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/Component.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/ComponentManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/Entity.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/Game.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/Group.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/IChild.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/PluginManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/Signal.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/SignalBinding.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/Stage.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/State.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/StateConfig.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/core/StateManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/file/AudioFile.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/file/DataFile.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/file/DataLibrary.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/file/File.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/file/FileStore.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/file/Loader.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/file/TextureFile.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/gameobjects/Sprite.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/gameobjects/StaticImage.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/gameobjects/Textfield.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/gameobjects/tilemap/TileMap.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/gameobjects/tilemap/TileMapLayer.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/gameobjects/tilemap/TileType.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/geom/AABB.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/geom/Circle.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/geom/Intersect.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/geom/IntersectResult.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/geom/Line.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/geom/Matrix.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/geom/Point.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/geom/Ray.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/geom/Rectangle.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/geom/Transform.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/geom/Vector2.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/HUDDisplay.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/HUDManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/HUDWidget.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/components/Counter.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/components/Time.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/components/WidgetInput.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/widgets/Bar.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/widgets/BasicScore.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/widgets/Button.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/widgets/Icon.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/widgets/IconBar.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/widgets/Menu.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/widgets/MenuItem.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/widgets/TextField.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/hud/widgets/Time.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/input/Finger.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/input/InputManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/input/Key.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/input/Keyboard.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/input/Keycodes.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/input/Mouse.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/input/MouseCursor.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/input/Pointer.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/input/Touch.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/CanvasRenderer.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/GLArrayBuffer.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/GLBlendMode.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/GLElementArrayBuffer.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/GLRenderManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/GLShaderManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/GLTextureManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/GLTextureWrapper.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/renderers/Renderer.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/renderers/TextureAtlasRenderer.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/shaders/ShaderPair.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/render/shaders/TextureAtlasShader.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/sound/Audio.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/sound/AudioLibrary.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/sound/AudioManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/system/Bootstrap.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/system/Device.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/textures/SingleImage.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/textures/SpriteSheet.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/textures/TextureAtlas.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/textures/TextureLibrary.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/time/Clock.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/time/ClockManager.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/time/MasterClock.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/time/Timer.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/time/TimerEvent.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/utils/Canvas.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/utils/Common.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/utils/GameMath.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/utils/Log.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/utils/RandomDataGenerator.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/utils/RequestAnimationFrame.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
src/utils/Version.ts
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
templateGame/lib/kiwi.js
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
templateGame/src/states/intro.js
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
templateGame/src/states/loading.js
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
templateGame/src/states/play.js
Sorry, we could not display the changes to this file because there were too many other changes to display.
0
tslint.json
Sorry, we could not display the changes to this file because there were too many other changes to display.
0 comments on commit
52091d9