View ExtendedImageLoader.as
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package feathers.controls | |
{ | |
import flash.geom.Rectangle; | |
import feathers.layout.HorizontalAlign; | |
import feathers.layout.VerticalAlign; | |
import starling.display.Quad; | |
import starling.utils.RectangleUtil; | |
import starling.utils.ScaleMode; |
View ExtendedListItemRenderer.as
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package feathers.controls.renderers | |
{ | |
import starling.display.DisplayObject; | |
public class ExtendedListItemRenderer extends DefaultListItemRenderer | |
{ | |
private var _iconPropertiesFunction:Function; | |
public function get iconPropertiesFunction():Function | |
{ | |
return _iconPropertiesFunction; |
View StarlingCallLater.as
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package starling.extensions.starlingCallLater | |
{ | |
import starling.core.Starling; | |
import starling.display.Stage; | |
import starling.events.Event; | |
public class StarlingCallLater | |
{ | |
/** | |
* 2D Array of vectors containing FunctionReference instances. |
View Timer.as
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package starling.extensions | |
{ | |
import starling.animation.DelayedCall; | |
import starling.animation.Juggler; | |
import starling.core.Starling; | |
import starling.events.EventDispatcher; | |
[Event(name="timer", type="starling.events.Event")] | |
[Event(name="timerComplete", type="starling.events.Event")] | |
public class Timer extends EventDispatcher |
View NativeDragSource.as
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package feathers.utils | |
{ | |
import feathers.dragDrop.DragData; | |
import feathers.dragDrop.DragDropManager; | |
import feathers.dragDrop.IDragSource; | |
import flash.desktop.Clipboard; | |
import flash.desktop.NativeDragActions; | |
import flash.desktop.NativeDragManager; | |
import flash.display.Sprite; |
View VideoTextureImageLoader.as
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package feathers.controls | |
{ | |
import feathers.layout.HorizontalAlign; | |
import feathers.layout.VerticalAlign; | |
import flash.display.BitmapData; | |
import flash.display3D.textures.VideoTexture; | |
import flash.geom.Point; | |
import flash.geom.Rectangle; |