Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion flixel/graphics/frames/FlxFrame.hx
Original file line number Diff line number Diff line change
Expand Up @@ -761,8 +761,13 @@ enum abstract FlxFrameAngle(Int) from Int to Int
* `bottom`. This is for optimization reasons, to reduce arithmetic when drawing vertices
*/
@:forward(put)
abstract FlxUVRect(FlxRect) from FlxRect to flixel.util.FlxPool.IFlxPooled
abstract FlxUVRect(FlxRect) from FlxRect
{
@:to public inline function toIFlxPooled():flixel.util.FlxPool.IFlxPooled
{
return this;
}

public var left(get, set):Float;
inline function get_left():Float { return this.x; }
inline function set_left(value):Float { return this.x = value; }
Expand Down