├── .gitignore ├── README.md ├── Universal.hx ├── block-icons ├── actor-anon.png ├── actor-drawing.png ├── actor.png ├── arrow-0.png ├── arrow-090.png ├── arrow-180.png ├── arrow-270.png ├── arrow-move.png ├── arrow-stop-090.png ├── arrow-stop-180.png ├── arrow-stop-270.png ├── arrow-stop.png ├── break.png ├── camera.png ├── cancel.png ├── clock-future.png ├── clock.png ├── collide.png ├── color.png ├── console.png ├── continue.png ├── controller.png ├── create.png ├── cursor.png ├── desktop.png ├── draw.png ├── events │ ├── actor.png │ ├── advanced.png │ ├── att-any.png │ ├── att-bool.png │ ├── att-number.png │ ├── attributes.png │ ├── basic.png │ ├── collision.png │ ├── controller.png │ ├── created.png │ ├── do-later.png │ ├── group.png │ ├── keyboard.png │ ├── money.png │ ├── mouse-actor.png │ ├── mouse-region.png │ ├── mouse.png │ ├── pause.png │ ├── periodic.png │ ├── region.png │ ├── screen-fullscreen.png │ ├── screen-gamescale.png │ ├── screen-scene.png │ ├── screen-screensize.png │ ├── screen.png │ ├── sound-channel.png │ ├── sound-sound.png │ ├── sound.png │ ├── swipe.png │ ├── tag-arrow.png │ ├── tag-label-purple.png │ ├── target.png │ ├── tilt.png │ ├── time.png │ ├── touch.png │ ├── type.png │ ├── when-creating.png │ ├── when-drawing.png │ └── when-updating.png ├── flash.png ├── font.png ├── keyboard.png ├── mobile.png ├── mochi.png ├── money.png ├── mouse-select-right.png ├── mouse-select.png ├── mouse-wheel.png ├── mouse.png ├── picker │ ├── attribute.png │ ├── collision.png │ ├── favorite.png │ └── game.png ├── question.png ├── rot-ccw.png ├── rot-cw.png ├── save.png ├── scene.png ├── score.png ├── screen-fullscreen.png ├── screen-gamescale.png ├── screen-screensize.png ├── screen.png ├── small-down.png ├── small-up.png ├── sound.png ├── step.png ├── stop.png ├── swipe.png ├── target.png ├── tilt.png ├── touch.png ├── vars.png ├── volume-down.png ├── volume-mute.png ├── volume-up.png ├── volume.png └── web.png ├── blocks.xml ├── com └── stencyl │ ├── Config.hx │ ├── Data.hx │ ├── Engine.hx │ ├── Extension.hx │ ├── Input.hx │ ├── Key.hx │ ├── behavior │ ├── ActorScript.hx │ ├── Attribute.hx │ ├── Behavior.hx │ ├── BehaviorInstance.hx │ ├── BehaviorManager.hx │ ├── ReflectionHelper.hx │ ├── SceneScript.hx │ ├── Script.hx │ └── TimedTask.hx │ ├── event │ ├── Event.hx │ ├── EventDispatcher.hx │ └── EventMap.hx │ ├── graphics │ ├── AbstractAnimation.hx │ ├── BitmapAnimation.hx │ ├── BitmapDataTileSourcePatch.hx │ ├── BitmapWrapper.hx │ ├── BlendModes.hx │ ├── ColorMatrixShader.hx │ ├── DynamicTileset.hx │ ├── EngineScaleUpdateListener.hx │ ├── G.hx │ ├── GLUtil.hx │ ├── Scale.hx │ ├── ScaleMode.hx │ ├── SheetAnimation.hx │ ├── TextureAtlas.hx │ ├── TileSource.hx │ ├── TilesetUtils.hx │ ├── fonts │ │ ├── BitmapFont.hx │ │ └── FontSymbol.hx │ ├── shaders │ │ ├── BasicShader.hx │ │ ├── BloomShader.hx │ │ ├── BlurShader.hx │ │ ├── CSBShader.hx │ │ ├── ExternalShader.hx │ │ ├── GrainShader.hx │ │ ├── GrayscaleShader.hx │ │ ├── HueShader.hx │ │ ├── InlineShader.hx │ │ ├── InvertShader.hx │ │ ├── PostProcess.hx │ │ ├── ScanlineShader.hx │ │ ├── SepiaShader.hx │ │ ├── Shader.hx │ │ ├── SharpenShader.hx │ │ └── TintShader.hx │ └── transitions │ │ ├── BlindsTransition.hx │ │ ├── BubblesTransition.hx │ │ ├── CircleTransition.hx │ │ ├── CrossfadeTransition.hx │ │ ├── FadeInTransition.hx │ │ ├── FadeOutTransition.hx │ │ ├── PixelizeTransition.hx │ │ ├── RectangleTransition.hx │ │ ├── SlideTransition.hx │ │ └── Transition.hx │ ├── io │ ├── AbstractReader.hx │ ├── ActorTypeReader.hx │ ├── AttributeValues.hx │ ├── BackgroundReader.hx │ ├── BehaviorReader.hx │ ├── FontReader.hx │ ├── ShapeReader.hx │ ├── SoundReader.hx │ ├── SpriteReader.hx │ ├── TilesetReader.hx │ └── mbs │ │ ├── MbsBackground.hx │ │ ├── MbsBlank.hx │ │ ├── MbsCustomBlock.hx │ │ ├── MbsFont.hx │ │ ├── MbsMusic.hx │ │ ├── MbsResource.hx │ │ ├── Typedefs.hx │ │ ├── actortype │ │ ├── MbsActorType.hx │ │ ├── MbsAnimShape.hx │ │ ├── MbsAnimation.hx │ │ └── MbsSprite.hx │ │ ├── game │ │ ├── MbsAtlas.hx │ │ ├── MbsCollisionGroup.hx │ │ ├── MbsCollisionPair.hx │ │ ├── MbsCollisionShape.hx │ │ ├── MbsGame.hx │ │ └── autotile │ │ │ ├── MbsAutotileFormat.hx │ │ │ └── MbsCorners.hx │ │ ├── scene │ │ ├── MbsActorInstance.hx │ │ ├── MbsScene.hx │ │ ├── MbsSceneHeader.hx │ │ ├── MbsTile.hx │ │ ├── MbsTileset.hx │ │ ├── layers │ │ │ ├── MbsColorBackground.hx │ │ │ ├── MbsGradientBackground.hx │ │ │ ├── MbsImageBackground.hx │ │ │ ├── MbsInteractiveLayer.hx │ │ │ └── MbsLayer.hx │ │ └── physics │ │ │ ├── MbsHingeJoint.hx │ │ │ ├── MbsJoint.hx │ │ │ ├── MbsRegion.hx │ │ │ ├── MbsSlidingJoint.hx │ │ │ ├── MbsStickJoint.hx │ │ │ └── MbsTerrainRegion.hx │ │ ├── shape │ │ ├── MbsCircle.hx │ │ ├── MbsPoint.hx │ │ ├── MbsPolyRegion.hx │ │ ├── MbsPolygon.hx │ │ ├── MbsShape.hx │ │ └── MbsWireframe.hx │ │ └── snippet │ │ ├── MbsAttribute.hx │ │ ├── MbsAttributeDef.hx │ │ ├── MbsBlock.hx │ │ ├── MbsEvent.hx │ │ ├── MbsMapElement.hx │ │ ├── MbsSnippet.hx │ │ └── MbsSnippetDef.hx │ ├── loader │ ├── CustomSwfPreloader.hx │ ├── PreloaderConfig.hx │ ├── SiteLock.hx │ ├── SplashBox.hx │ ├── StencylPreloader.hx │ └── SwfPreloaderConfig.hx │ ├── models │ ├── Actor.hx │ ├── Atlas.hx │ ├── Background.hx │ ├── CollisionGroupDef.hx │ ├── Font.hx │ ├── GameModel.hx │ ├── GroupDef.hx │ ├── Joystick.hx │ ├── PhysicsMode.hx │ ├── Region.hx │ ├── Resource.hx │ ├── Scene.hx │ ├── Sound.hx │ ├── SoundChannel.hx │ ├── Terrain.hx │ ├── actor │ │ ├── ActorTweenProperties.hx │ │ ├── ActorType.hx │ │ ├── AngleHolder.hx │ │ ├── Animation.hx │ │ ├── Collision.hx │ │ ├── CollisionPoint.hx │ │ ├── Group.hx │ │ └── Sprite.hx │ ├── background │ │ ├── ColorBackground.hx │ │ ├── GradientBackground.hx │ │ ├── ImageBackground.hx │ │ └── ScrollingBackground.hx │ ├── collision │ │ ├── CollisionInfo.hx │ │ ├── Grid.hx │ │ ├── Hitbox.hx │ │ ├── Mask.hx │ │ ├── Masklist.hx │ │ └── Pixelmask.hx │ └── scene │ │ ├── ActorInstance.hx │ │ ├── ActorLayer.hx │ │ ├── Autotile.hx │ │ ├── AutotileFormat.hx │ │ ├── DeferredActor.hx │ │ ├── DrawingLayer.hx │ │ ├── Layer.hx │ │ ├── RegionDef.hx │ │ ├── ScrollingBitmap.hx │ │ ├── TerrainDef.hx │ │ ├── Tile.hx │ │ ├── TileLayer.hx │ │ ├── Tileset.hx │ │ ├── Wireframe.hx │ │ └── layers │ │ ├── BackgroundLayer.hx │ │ └── RegularLayer.hx │ └── utils │ ├── ARGB.hx │ ├── Assets.hx │ ├── ColorMatrix.hx │ ├── ConfigUtil.hx │ ├── HaxeDefines.hx │ ├── HscriptRunner.hx │ ├── LazyIntMap.hx │ ├── LazyMap.hx │ ├── LazyStringMap.hx │ ├── Log.hx │ ├── Mathematics.hx │ ├── PolyDecompBayazit.hx │ ├── RGB.hx │ ├── ToolsetInterface.hx │ ├── Utils.hx │ └── motion │ ├── Easing.hx │ ├── EasingConstants.hx │ ├── EasingFunction.hx │ ├── EasingFunctions.hx │ ├── TweenFloat.hx │ ├── TweenFloat2.hx │ ├── TweenManager.hx │ ├── TweenObject.hx │ └── TweenTimer.hx ├── docs ├── .gitignore ├── ImportAll.hx ├── compile-rtti.hxml ├── generate-api-docs.bat ├── generate-api-docs.sh ├── run-dox.hxml └── scripts │ └── MyScripts.hx ├── events.xml ├── haxelib.json ├── include.xml ├── info.txt ├── lang ├── de │ ├── behavior-blockhelp.lang │ └── behavior-blocks.lang ├── el │ ├── behavior-blockhelp.lang │ └── behavior-blocks.lang ├── en │ ├── behavior-blockhelp.lang │ ├── behavior-blocks.lang │ └── behavior-events.lang ├── es │ ├── behavior-blockhelp.lang │ └── behavior-blocks.lang ├── fi │ ├── behavior-blockhelp.lang │ └── behavior-blocks.lang ├── fr │ ├── behavior-blockhelp.lang │ ├── behavior-blocks.lang │ └── behavior-events.lang ├── it │ ├── behavior-blockhelp.lang │ ├── behavior-blocks.lang │ └── behavior-events.lang ├── nl │ ├── behavior-blockhelp.lang │ └── behavior-blocks.lang ├── pl │ ├── behavior-blockhelp.lang │ └── behavior-blocks.lang ├── pt │ ├── behavior-blockhelp.lang │ └── behavior-blocks.lang ├── ru │ ├── behavior-blockhelp.lang │ └── behavior-blocks.lang ├── zh │ ├── behavior-blockhelp.lang │ └── behavior-blocks.lang └── zh_CN │ ├── behavior-blockhelp.lang │ └── behavior-blocks.lang ├── native ├── block-icons │ ├── keyboard.png │ └── mobile.png ├── blocks.xml ├── dependencies │ └── native │ │ └── src │ │ └── com │ │ └── androidnative │ │ └── Native.java ├── haxelib.json ├── icon.png ├── include.xml ├── info.txt ├── lang │ ├── el │ │ └── com.stencyl.native.lang │ ├── en │ │ └── com.stencyl.native.lang │ ├── es │ │ └── com.stencyl.native.lang │ ├── fr │ │ └── com.stencyl.native.lang │ ├── it │ │ └── com.stencyl.native.lang │ ├── pt │ │ └── com.stencyl.native.lang │ └── ru │ │ └── com.stencyl.native.lang ├── project │ ├── Build.xml │ ├── common │ │ └── ExternalInterface.cpp │ ├── include │ │ └── Native.h │ └── iphone │ │ └── Native.mm ├── services.xml ├── src │ └── com │ │ └── stencyl │ │ └── native │ │ └── Native.hx └── stencyl-addons.xml ├── palette.xml ├── scripts └── MyAssets.hx ├── src-override ├── js │ └── _std │ │ └── haxe │ │ └── NativeStackTrace.hx └── lime │ └── utils │ └── Log.hx ├── templates └── haxe │ └── ApplicationMain.hx └── tools └── run ├── RunMain.hx └── compile.hxml /.gitignore: -------------------------------------------------------------------------------- 1 | run.n -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/README.md -------------------------------------------------------------------------------- /Universal.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/Universal.hx -------------------------------------------------------------------------------- /block-icons/actor-anon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/actor-anon.png -------------------------------------------------------------------------------- /block-icons/actor-drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/actor-drawing.png -------------------------------------------------------------------------------- /block-icons/actor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/actor.png -------------------------------------------------------------------------------- /block-icons/arrow-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/arrow-0.png -------------------------------------------------------------------------------- /block-icons/arrow-090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/arrow-090.png -------------------------------------------------------------------------------- /block-icons/arrow-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/arrow-180.png -------------------------------------------------------------------------------- /block-icons/arrow-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/arrow-270.png -------------------------------------------------------------------------------- /block-icons/arrow-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/arrow-move.png -------------------------------------------------------------------------------- /block-icons/arrow-stop-090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/arrow-stop-090.png -------------------------------------------------------------------------------- /block-icons/arrow-stop-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/arrow-stop-180.png -------------------------------------------------------------------------------- /block-icons/arrow-stop-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/arrow-stop-270.png -------------------------------------------------------------------------------- /block-icons/arrow-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/arrow-stop.png -------------------------------------------------------------------------------- /block-icons/break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/break.png -------------------------------------------------------------------------------- /block-icons/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/camera.png -------------------------------------------------------------------------------- /block-icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/cancel.png -------------------------------------------------------------------------------- /block-icons/clock-future.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/clock-future.png -------------------------------------------------------------------------------- /block-icons/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/clock.png -------------------------------------------------------------------------------- /block-icons/collide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/collide.png -------------------------------------------------------------------------------- /block-icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/color.png -------------------------------------------------------------------------------- /block-icons/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/console.png -------------------------------------------------------------------------------- /block-icons/continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/continue.png -------------------------------------------------------------------------------- /block-icons/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/controller.png -------------------------------------------------------------------------------- /block-icons/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/create.png -------------------------------------------------------------------------------- /block-icons/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/cursor.png -------------------------------------------------------------------------------- /block-icons/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/desktop.png -------------------------------------------------------------------------------- /block-icons/draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/draw.png -------------------------------------------------------------------------------- /block-icons/events/actor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/actor.png -------------------------------------------------------------------------------- /block-icons/events/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/advanced.png -------------------------------------------------------------------------------- /block-icons/events/att-any.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/att-any.png -------------------------------------------------------------------------------- /block-icons/events/att-bool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/att-bool.png -------------------------------------------------------------------------------- /block-icons/events/att-number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/att-number.png -------------------------------------------------------------------------------- /block-icons/events/attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/attributes.png -------------------------------------------------------------------------------- /block-icons/events/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/basic.png -------------------------------------------------------------------------------- /block-icons/events/collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/collision.png -------------------------------------------------------------------------------- /block-icons/events/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/controller.png -------------------------------------------------------------------------------- /block-icons/events/created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/created.png -------------------------------------------------------------------------------- /block-icons/events/do-later.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/do-later.png -------------------------------------------------------------------------------- /block-icons/events/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/group.png -------------------------------------------------------------------------------- /block-icons/events/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/keyboard.png -------------------------------------------------------------------------------- /block-icons/events/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/money.png -------------------------------------------------------------------------------- /block-icons/events/mouse-actor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/mouse-actor.png -------------------------------------------------------------------------------- /block-icons/events/mouse-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/mouse-region.png -------------------------------------------------------------------------------- /block-icons/events/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/mouse.png -------------------------------------------------------------------------------- /block-icons/events/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/pause.png -------------------------------------------------------------------------------- /block-icons/events/periodic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/periodic.png -------------------------------------------------------------------------------- /block-icons/events/region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/region.png -------------------------------------------------------------------------------- /block-icons/events/screen-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/screen-fullscreen.png -------------------------------------------------------------------------------- /block-icons/events/screen-gamescale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/screen-gamescale.png -------------------------------------------------------------------------------- /block-icons/events/screen-scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/screen-scene.png -------------------------------------------------------------------------------- /block-icons/events/screen-screensize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/screen-screensize.png -------------------------------------------------------------------------------- /block-icons/events/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/screen.png -------------------------------------------------------------------------------- /block-icons/events/sound-channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/sound-channel.png -------------------------------------------------------------------------------- /block-icons/events/sound-sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/sound-sound.png -------------------------------------------------------------------------------- /block-icons/events/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/sound.png -------------------------------------------------------------------------------- /block-icons/events/swipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/swipe.png -------------------------------------------------------------------------------- /block-icons/events/tag-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/tag-arrow.png -------------------------------------------------------------------------------- /block-icons/events/tag-label-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/tag-label-purple.png -------------------------------------------------------------------------------- /block-icons/events/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/target.png -------------------------------------------------------------------------------- /block-icons/events/tilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/tilt.png -------------------------------------------------------------------------------- /block-icons/events/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/time.png -------------------------------------------------------------------------------- /block-icons/events/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/touch.png -------------------------------------------------------------------------------- /block-icons/events/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/type.png -------------------------------------------------------------------------------- /block-icons/events/when-creating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/when-creating.png -------------------------------------------------------------------------------- /block-icons/events/when-drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/when-drawing.png -------------------------------------------------------------------------------- /block-icons/events/when-updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/events/when-updating.png -------------------------------------------------------------------------------- /block-icons/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/flash.png -------------------------------------------------------------------------------- /block-icons/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/font.png -------------------------------------------------------------------------------- /block-icons/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/keyboard.png -------------------------------------------------------------------------------- /block-icons/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/mobile.png -------------------------------------------------------------------------------- /block-icons/mochi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/mochi.png -------------------------------------------------------------------------------- /block-icons/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/money.png -------------------------------------------------------------------------------- /block-icons/mouse-select-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/mouse-select-right.png -------------------------------------------------------------------------------- /block-icons/mouse-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/mouse-select.png -------------------------------------------------------------------------------- /block-icons/mouse-wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/mouse-wheel.png -------------------------------------------------------------------------------- /block-icons/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/mouse.png -------------------------------------------------------------------------------- /block-icons/picker/attribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/picker/attribute.png -------------------------------------------------------------------------------- /block-icons/picker/collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/picker/collision.png -------------------------------------------------------------------------------- /block-icons/picker/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/picker/favorite.png -------------------------------------------------------------------------------- /block-icons/picker/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/picker/game.png -------------------------------------------------------------------------------- /block-icons/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/question.png -------------------------------------------------------------------------------- /block-icons/rot-ccw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/rot-ccw.png -------------------------------------------------------------------------------- /block-icons/rot-cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/rot-cw.png -------------------------------------------------------------------------------- /block-icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/save.png -------------------------------------------------------------------------------- /block-icons/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/scene.png -------------------------------------------------------------------------------- /block-icons/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/score.png -------------------------------------------------------------------------------- /block-icons/screen-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/screen-fullscreen.png -------------------------------------------------------------------------------- /block-icons/screen-gamescale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/screen-gamescale.png -------------------------------------------------------------------------------- /block-icons/screen-screensize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/screen-screensize.png -------------------------------------------------------------------------------- /block-icons/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/screen.png -------------------------------------------------------------------------------- /block-icons/small-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/small-down.png -------------------------------------------------------------------------------- /block-icons/small-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/small-up.png -------------------------------------------------------------------------------- /block-icons/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/sound.png -------------------------------------------------------------------------------- /block-icons/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/step.png -------------------------------------------------------------------------------- /block-icons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/stop.png -------------------------------------------------------------------------------- /block-icons/swipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/swipe.png -------------------------------------------------------------------------------- /block-icons/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/target.png -------------------------------------------------------------------------------- /block-icons/tilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/tilt.png -------------------------------------------------------------------------------- /block-icons/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/touch.png -------------------------------------------------------------------------------- /block-icons/vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/vars.png -------------------------------------------------------------------------------- /block-icons/volume-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/volume-down.png -------------------------------------------------------------------------------- /block-icons/volume-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/volume-mute.png -------------------------------------------------------------------------------- /block-icons/volume-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/volume-up.png -------------------------------------------------------------------------------- /block-icons/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/volume.png -------------------------------------------------------------------------------- /block-icons/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/block-icons/web.png -------------------------------------------------------------------------------- /blocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/blocks.xml -------------------------------------------------------------------------------- /com/stencyl/Config.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/Config.hx -------------------------------------------------------------------------------- /com/stencyl/Data.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/Data.hx -------------------------------------------------------------------------------- /com/stencyl/Engine.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/Engine.hx -------------------------------------------------------------------------------- /com/stencyl/Extension.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/Extension.hx -------------------------------------------------------------------------------- /com/stencyl/Input.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/Input.hx -------------------------------------------------------------------------------- /com/stencyl/Key.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/Key.hx -------------------------------------------------------------------------------- /com/stencyl/behavior/ActorScript.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/behavior/ActorScript.hx -------------------------------------------------------------------------------- /com/stencyl/behavior/Attribute.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/behavior/Attribute.hx -------------------------------------------------------------------------------- /com/stencyl/behavior/Behavior.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/behavior/Behavior.hx -------------------------------------------------------------------------------- /com/stencyl/behavior/BehaviorInstance.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/behavior/BehaviorInstance.hx -------------------------------------------------------------------------------- /com/stencyl/behavior/BehaviorManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/behavior/BehaviorManager.hx -------------------------------------------------------------------------------- /com/stencyl/behavior/ReflectionHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/behavior/ReflectionHelper.hx -------------------------------------------------------------------------------- /com/stencyl/behavior/SceneScript.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/behavior/SceneScript.hx -------------------------------------------------------------------------------- /com/stencyl/behavior/Script.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/behavior/Script.hx -------------------------------------------------------------------------------- /com/stencyl/behavior/TimedTask.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/behavior/TimedTask.hx -------------------------------------------------------------------------------- /com/stencyl/event/Event.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/event/Event.hx -------------------------------------------------------------------------------- /com/stencyl/event/EventDispatcher.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/event/EventDispatcher.hx -------------------------------------------------------------------------------- /com/stencyl/event/EventMap.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/event/EventMap.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/AbstractAnimation.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/AbstractAnimation.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/BitmapAnimation.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/BitmapAnimation.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/BitmapDataTileSourcePatch.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/BitmapDataTileSourcePatch.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/BitmapWrapper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/BitmapWrapper.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/BlendModes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/BlendModes.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/ColorMatrixShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/ColorMatrixShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/DynamicTileset.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/DynamicTileset.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/EngineScaleUpdateListener.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/EngineScaleUpdateListener.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/G.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/G.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/GLUtil.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/GLUtil.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/Scale.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/Scale.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/ScaleMode.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/ScaleMode.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/SheetAnimation.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/SheetAnimation.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/TextureAtlas.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/TextureAtlas.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/TileSource.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/TileSource.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/TilesetUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/TilesetUtils.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/fonts/BitmapFont.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/fonts/BitmapFont.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/fonts/FontSymbol.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/fonts/FontSymbol.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/BasicShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/BasicShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/BloomShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/BloomShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/BlurShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/BlurShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/CSBShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/CSBShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/ExternalShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/ExternalShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/GrainShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/GrainShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/GrayscaleShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/GrayscaleShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/HueShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/HueShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/InlineShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/InlineShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/InvertShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/InvertShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/PostProcess.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/PostProcess.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/ScanlineShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/ScanlineShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/SepiaShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/SepiaShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/Shader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/Shader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/SharpenShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/SharpenShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/shaders/TintShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/shaders/TintShader.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/transitions/BlindsTransition.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/transitions/BlindsTransition.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/transitions/BubblesTransition.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/transitions/BubblesTransition.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/transitions/CircleTransition.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/transitions/CircleTransition.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/transitions/CrossfadeTransition.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/transitions/CrossfadeTransition.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/transitions/FadeInTransition.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/transitions/FadeInTransition.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/transitions/FadeOutTransition.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/transitions/FadeOutTransition.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/transitions/PixelizeTransition.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/transitions/PixelizeTransition.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/transitions/RectangleTransition.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/transitions/RectangleTransition.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/transitions/SlideTransition.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/transitions/SlideTransition.hx -------------------------------------------------------------------------------- /com/stencyl/graphics/transitions/Transition.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/graphics/transitions/Transition.hx -------------------------------------------------------------------------------- /com/stencyl/io/AbstractReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/AbstractReader.hx -------------------------------------------------------------------------------- /com/stencyl/io/ActorTypeReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/ActorTypeReader.hx -------------------------------------------------------------------------------- /com/stencyl/io/AttributeValues.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/AttributeValues.hx -------------------------------------------------------------------------------- /com/stencyl/io/BackgroundReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/BackgroundReader.hx -------------------------------------------------------------------------------- /com/stencyl/io/BehaviorReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/BehaviorReader.hx -------------------------------------------------------------------------------- /com/stencyl/io/FontReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/FontReader.hx -------------------------------------------------------------------------------- /com/stencyl/io/ShapeReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/ShapeReader.hx -------------------------------------------------------------------------------- /com/stencyl/io/SoundReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/SoundReader.hx -------------------------------------------------------------------------------- /com/stencyl/io/SpriteReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/SpriteReader.hx -------------------------------------------------------------------------------- /com/stencyl/io/TilesetReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/TilesetReader.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/MbsBackground.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/MbsBackground.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/MbsBlank.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/MbsBlank.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/MbsCustomBlock.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/MbsCustomBlock.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/MbsFont.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/MbsFont.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/MbsMusic.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/MbsMusic.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/MbsResource.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/MbsResource.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/Typedefs.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/Typedefs.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/actortype/MbsActorType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/actortype/MbsActorType.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/actortype/MbsAnimShape.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/actortype/MbsAnimShape.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/actortype/MbsAnimation.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/actortype/MbsAnimation.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/actortype/MbsSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/actortype/MbsSprite.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/game/MbsAtlas.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/game/MbsAtlas.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/game/MbsCollisionGroup.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/game/MbsCollisionGroup.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/game/MbsCollisionPair.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/game/MbsCollisionPair.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/game/MbsCollisionShape.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/game/MbsCollisionShape.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/game/MbsGame.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/game/MbsGame.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/game/autotile/MbsAutotileFormat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/game/autotile/MbsAutotileFormat.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/game/autotile/MbsCorners.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/game/autotile/MbsCorners.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/MbsActorInstance.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/MbsActorInstance.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/MbsScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/MbsScene.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/MbsSceneHeader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/MbsSceneHeader.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/MbsTile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/MbsTile.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/MbsTileset.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/MbsTileset.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/layers/MbsColorBackground.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/layers/MbsColorBackground.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/layers/MbsGradientBackground.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/layers/MbsGradientBackground.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/layers/MbsImageBackground.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/layers/MbsImageBackground.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/layers/MbsInteractiveLayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/layers/MbsInteractiveLayer.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/layers/MbsLayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/layers/MbsLayer.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/physics/MbsHingeJoint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/physics/MbsHingeJoint.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/physics/MbsJoint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/physics/MbsJoint.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/physics/MbsRegion.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/physics/MbsRegion.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/physics/MbsSlidingJoint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/physics/MbsSlidingJoint.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/physics/MbsStickJoint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/physics/MbsStickJoint.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/scene/physics/MbsTerrainRegion.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/scene/physics/MbsTerrainRegion.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/shape/MbsCircle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/shape/MbsCircle.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/shape/MbsPoint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/shape/MbsPoint.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/shape/MbsPolyRegion.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/shape/MbsPolyRegion.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/shape/MbsPolygon.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/shape/MbsPolygon.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/shape/MbsShape.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/shape/MbsShape.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/shape/MbsWireframe.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/shape/MbsWireframe.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/snippet/MbsAttribute.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/snippet/MbsAttribute.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/snippet/MbsAttributeDef.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/snippet/MbsAttributeDef.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/snippet/MbsBlock.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/snippet/MbsBlock.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/snippet/MbsEvent.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/snippet/MbsEvent.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/snippet/MbsMapElement.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/snippet/MbsMapElement.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/snippet/MbsSnippet.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/snippet/MbsSnippet.hx -------------------------------------------------------------------------------- /com/stencyl/io/mbs/snippet/MbsSnippetDef.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/io/mbs/snippet/MbsSnippetDef.hx -------------------------------------------------------------------------------- /com/stencyl/loader/CustomSwfPreloader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/loader/CustomSwfPreloader.hx -------------------------------------------------------------------------------- /com/stencyl/loader/PreloaderConfig.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/loader/PreloaderConfig.hx -------------------------------------------------------------------------------- /com/stencyl/loader/SiteLock.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/loader/SiteLock.hx -------------------------------------------------------------------------------- /com/stencyl/loader/SplashBox.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/loader/SplashBox.hx -------------------------------------------------------------------------------- /com/stencyl/loader/StencylPreloader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/loader/StencylPreloader.hx -------------------------------------------------------------------------------- /com/stencyl/loader/SwfPreloaderConfig.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/loader/SwfPreloaderConfig.hx -------------------------------------------------------------------------------- /com/stencyl/models/Actor.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/Actor.hx -------------------------------------------------------------------------------- /com/stencyl/models/Atlas.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/Atlas.hx -------------------------------------------------------------------------------- /com/stencyl/models/Background.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/Background.hx -------------------------------------------------------------------------------- /com/stencyl/models/CollisionGroupDef.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/CollisionGroupDef.hx -------------------------------------------------------------------------------- /com/stencyl/models/Font.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/Font.hx -------------------------------------------------------------------------------- /com/stencyl/models/GameModel.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/GameModel.hx -------------------------------------------------------------------------------- /com/stencyl/models/GroupDef.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/GroupDef.hx -------------------------------------------------------------------------------- /com/stencyl/models/Joystick.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/Joystick.hx -------------------------------------------------------------------------------- /com/stencyl/models/PhysicsMode.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/PhysicsMode.hx -------------------------------------------------------------------------------- /com/stencyl/models/Region.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/Region.hx -------------------------------------------------------------------------------- /com/stencyl/models/Resource.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/Resource.hx -------------------------------------------------------------------------------- /com/stencyl/models/Scene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/Scene.hx -------------------------------------------------------------------------------- /com/stencyl/models/Sound.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/Sound.hx -------------------------------------------------------------------------------- /com/stencyl/models/SoundChannel.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/SoundChannel.hx -------------------------------------------------------------------------------- /com/stencyl/models/Terrain.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/Terrain.hx -------------------------------------------------------------------------------- /com/stencyl/models/actor/ActorTweenProperties.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/actor/ActorTweenProperties.hx -------------------------------------------------------------------------------- /com/stencyl/models/actor/ActorType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/actor/ActorType.hx -------------------------------------------------------------------------------- /com/stencyl/models/actor/AngleHolder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/actor/AngleHolder.hx -------------------------------------------------------------------------------- /com/stencyl/models/actor/Animation.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/actor/Animation.hx -------------------------------------------------------------------------------- /com/stencyl/models/actor/Collision.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/actor/Collision.hx -------------------------------------------------------------------------------- /com/stencyl/models/actor/CollisionPoint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/actor/CollisionPoint.hx -------------------------------------------------------------------------------- /com/stencyl/models/actor/Group.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/actor/Group.hx -------------------------------------------------------------------------------- /com/stencyl/models/actor/Sprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/actor/Sprite.hx -------------------------------------------------------------------------------- /com/stencyl/models/background/ColorBackground.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/background/ColorBackground.hx -------------------------------------------------------------------------------- /com/stencyl/models/background/GradientBackground.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/background/GradientBackground.hx -------------------------------------------------------------------------------- /com/stencyl/models/background/ImageBackground.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/background/ImageBackground.hx -------------------------------------------------------------------------------- /com/stencyl/models/background/ScrollingBackground.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/background/ScrollingBackground.hx -------------------------------------------------------------------------------- /com/stencyl/models/collision/CollisionInfo.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/collision/CollisionInfo.hx -------------------------------------------------------------------------------- /com/stencyl/models/collision/Grid.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/collision/Grid.hx -------------------------------------------------------------------------------- /com/stencyl/models/collision/Hitbox.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/collision/Hitbox.hx -------------------------------------------------------------------------------- /com/stencyl/models/collision/Mask.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/collision/Mask.hx -------------------------------------------------------------------------------- /com/stencyl/models/collision/Masklist.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/collision/Masklist.hx -------------------------------------------------------------------------------- /com/stencyl/models/collision/Pixelmask.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/collision/Pixelmask.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/ActorInstance.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/ActorInstance.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/ActorLayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/ActorLayer.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/Autotile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/Autotile.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/AutotileFormat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/AutotileFormat.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/DeferredActor.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/DeferredActor.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/DrawingLayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/DrawingLayer.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/Layer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/Layer.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/RegionDef.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/RegionDef.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/ScrollingBitmap.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/ScrollingBitmap.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/TerrainDef.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/TerrainDef.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/Tile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/Tile.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/TileLayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/TileLayer.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/Tileset.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/Tileset.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/Wireframe.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/Wireframe.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/layers/BackgroundLayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/layers/BackgroundLayer.hx -------------------------------------------------------------------------------- /com/stencyl/models/scene/layers/RegularLayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/models/scene/layers/RegularLayer.hx -------------------------------------------------------------------------------- /com/stencyl/utils/ARGB.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/ARGB.hx -------------------------------------------------------------------------------- /com/stencyl/utils/Assets.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/Assets.hx -------------------------------------------------------------------------------- /com/stencyl/utils/ColorMatrix.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/ColorMatrix.hx -------------------------------------------------------------------------------- /com/stencyl/utils/ConfigUtil.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/ConfigUtil.hx -------------------------------------------------------------------------------- /com/stencyl/utils/HaxeDefines.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/HaxeDefines.hx -------------------------------------------------------------------------------- /com/stencyl/utils/HscriptRunner.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/HscriptRunner.hx -------------------------------------------------------------------------------- /com/stencyl/utils/LazyIntMap.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/LazyIntMap.hx -------------------------------------------------------------------------------- /com/stencyl/utils/LazyMap.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/LazyMap.hx -------------------------------------------------------------------------------- /com/stencyl/utils/LazyStringMap.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/LazyStringMap.hx -------------------------------------------------------------------------------- /com/stencyl/utils/Log.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/Log.hx -------------------------------------------------------------------------------- /com/stencyl/utils/Mathematics.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/Mathematics.hx -------------------------------------------------------------------------------- /com/stencyl/utils/PolyDecompBayazit.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/PolyDecompBayazit.hx -------------------------------------------------------------------------------- /com/stencyl/utils/RGB.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/RGB.hx -------------------------------------------------------------------------------- /com/stencyl/utils/ToolsetInterface.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/ToolsetInterface.hx -------------------------------------------------------------------------------- /com/stencyl/utils/Utils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/Utils.hx -------------------------------------------------------------------------------- /com/stencyl/utils/motion/Easing.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/motion/Easing.hx -------------------------------------------------------------------------------- /com/stencyl/utils/motion/EasingConstants.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/motion/EasingConstants.hx -------------------------------------------------------------------------------- /com/stencyl/utils/motion/EasingFunction.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/motion/EasingFunction.hx -------------------------------------------------------------------------------- /com/stencyl/utils/motion/EasingFunctions.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/motion/EasingFunctions.hx -------------------------------------------------------------------------------- /com/stencyl/utils/motion/TweenFloat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/motion/TweenFloat.hx -------------------------------------------------------------------------------- /com/stencyl/utils/motion/TweenFloat2.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/motion/TweenFloat2.hx -------------------------------------------------------------------------------- /com/stencyl/utils/motion/TweenManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/motion/TweenManager.hx -------------------------------------------------------------------------------- /com/stencyl/utils/motion/TweenObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/motion/TweenObject.hx -------------------------------------------------------------------------------- /com/stencyl/utils/motion/TweenTimer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/com/stencyl/utils/motion/TweenTimer.hx -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /pages/ 2 | /xml/ -------------------------------------------------------------------------------- /docs/ImportAll.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/docs/ImportAll.hx -------------------------------------------------------------------------------- /docs/compile-rtti.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/docs/compile-rtti.hxml -------------------------------------------------------------------------------- /docs/generate-api-docs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/docs/generate-api-docs.bat -------------------------------------------------------------------------------- /docs/generate-api-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/docs/generate-api-docs.sh -------------------------------------------------------------------------------- /docs/run-dox.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/docs/run-dox.hxml -------------------------------------------------------------------------------- /docs/scripts/MyScripts.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/docs/scripts/MyScripts.hx -------------------------------------------------------------------------------- /events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/events.xml -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/haxelib.json -------------------------------------------------------------------------------- /include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/include.xml -------------------------------------------------------------------------------- /info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/info.txt -------------------------------------------------------------------------------- /lang/de/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/de/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/de/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/de/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/el/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/el/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/el/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/el/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/en/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/en/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/en/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/en/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/en/behavior-events.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/en/behavior-events.lang -------------------------------------------------------------------------------- /lang/es/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/es/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/es/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/es/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/fi/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/fi/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/fi/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/fi/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/fr/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/fr/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/fr/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/fr/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/fr/behavior-events.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/fr/behavior-events.lang -------------------------------------------------------------------------------- /lang/it/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/it/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/it/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/it/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/it/behavior-events.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/it/behavior-events.lang -------------------------------------------------------------------------------- /lang/nl/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/nl/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/nl/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/nl/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/pl/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/pl/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/pl/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/pl/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/pt/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/pt/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/pt/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/pt/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/ru/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/ru/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/ru/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/ru/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/zh/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/zh/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/zh/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/zh/behavior-blocks.lang -------------------------------------------------------------------------------- /lang/zh_CN/behavior-blockhelp.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/zh_CN/behavior-blockhelp.lang -------------------------------------------------------------------------------- /lang/zh_CN/behavior-blocks.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/lang/zh_CN/behavior-blocks.lang -------------------------------------------------------------------------------- /native/block-icons/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/block-icons/keyboard.png -------------------------------------------------------------------------------- /native/block-icons/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/block-icons/mobile.png -------------------------------------------------------------------------------- /native/blocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/blocks.xml -------------------------------------------------------------------------------- /native/dependencies/native/src/com/androidnative/Native.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/dependencies/native/src/com/androidnative/Native.java -------------------------------------------------------------------------------- /native/haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/haxelib.json -------------------------------------------------------------------------------- /native/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/icon.png -------------------------------------------------------------------------------- /native/include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/include.xml -------------------------------------------------------------------------------- /native/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/info.txt -------------------------------------------------------------------------------- /native/lang/el/com.stencyl.native.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/lang/el/com.stencyl.native.lang -------------------------------------------------------------------------------- /native/lang/en/com.stencyl.native.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/lang/en/com.stencyl.native.lang -------------------------------------------------------------------------------- /native/lang/es/com.stencyl.native.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/lang/es/com.stencyl.native.lang -------------------------------------------------------------------------------- /native/lang/fr/com.stencyl.native.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/lang/fr/com.stencyl.native.lang -------------------------------------------------------------------------------- /native/lang/it/com.stencyl.native.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/lang/it/com.stencyl.native.lang -------------------------------------------------------------------------------- /native/lang/pt/com.stencyl.native.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/lang/pt/com.stencyl.native.lang -------------------------------------------------------------------------------- /native/lang/ru/com.stencyl.native.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/lang/ru/com.stencyl.native.lang -------------------------------------------------------------------------------- /native/project/Build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/project/Build.xml -------------------------------------------------------------------------------- /native/project/common/ExternalInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/project/common/ExternalInterface.cpp -------------------------------------------------------------------------------- /native/project/include/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/project/include/Native.h -------------------------------------------------------------------------------- /native/project/iphone/Native.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/project/iphone/Native.mm -------------------------------------------------------------------------------- /native/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/services.xml -------------------------------------------------------------------------------- /native/src/com/stencyl/native/Native.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/src/com/stencyl/native/Native.hx -------------------------------------------------------------------------------- /native/stencyl-addons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/native/stencyl-addons.xml -------------------------------------------------------------------------------- /palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/palette.xml -------------------------------------------------------------------------------- /scripts/MyAssets.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/scripts/MyAssets.hx -------------------------------------------------------------------------------- /src-override/js/_std/haxe/NativeStackTrace.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/src-override/js/_std/haxe/NativeStackTrace.hx -------------------------------------------------------------------------------- /src-override/lime/utils/Log.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/src-override/lime/utils/Log.hx -------------------------------------------------------------------------------- /templates/haxe/ApplicationMain.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/templates/haxe/ApplicationMain.hx -------------------------------------------------------------------------------- /tools/run/RunMain.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/tools/run/RunMain.hx -------------------------------------------------------------------------------- /tools/run/compile.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stencyl/stencyl-engine/HEAD/tools/run/compile.hxml --------------------------------------------------------------------------------