Rebel Fork Framework
|
Tile map object. More...
#include <Urho3D/Urho2D/TileMapDefs2D.h>
Public Member Functions | |
TileMapObjectType2D | GetObjectType () const |
const ea::string & | GetName () const |
const ea::string & | GetType () const |
const Vector2 & | GetPosition () const |
const Vector2 & | GetSize () const |
unsigned | GetNumPoints () const |
const Vector2 & | GetPoint (unsigned index) const |
Return point at index (use for script). | |
unsigned | GetTileGid () const |
bool | GetTileFlipX () const |
bool | GetTileFlipY () const |
bool | GetTileSwapXY () const |
Sprite2D * | GetTileSprite () const |
bool | HasProperty (const ea::string &name) const |
Return has property. | |
const ea::string & | GetProperty (const ea::string &name) const |
Return property value. | |
![]() | |
RefCounted () | |
Construct. Allocate the reference count structure and set an initial self weak reference. | |
virtual | ~RefCounted () |
Destruct. Mark as expired and also delete the reference count structure if no outside weak references exist. | |
RefCounted (const RefCounted &rhs)=delete | |
Prevent copy construction. | |
RefCounted & | operator= (const RefCounted &rhs)=delete |
Prevent assignment. | |
int | AddRef () |
int | ReleaseRef () |
int | Refs () const |
int | WeakRefs () const |
RefCount * | RefCountPtr () const |
Return pointer to the reference count structure. | |
bool | HasScriptObject () const |
Return true if script runtime object wrapping this native object exists. | |
bool | IsScriptStrongRef () const |
Return true if script reference is strong. | |
Private Attributes | |
TileMapObjectType2D | objectType_ {} |
Object type. | |
ea::string | name_ |
Name. | |
ea::string | type_ |
Type. | |
Vector2 | position_ |
Position. | |
Vector2 | size_ |
Size (for rectangle and ellipse). | |
ea::vector< Vector2 > | points_ |
Points(for polygon and polyline). | |
unsigned | gid_ {} |
Gid (for tile). | |
SharedPtr< Sprite2D > | sprite_ |
Sprite (for tile). | |
SharedPtr< PropertySet2D > | propertySet_ |
Property set. | |
Friends | |
class | TmxObjectGroup2D |
Tile map object.
|
inline |
Return name.
unsigned Urho3D::TileMapObject2D::GetNumPoints | ( | ) | const |
Return number of points (use for script).
|
inline |
Return type.
|
inline |
Return position.
|
inline |
Return size (for rectangle and ellipse).
|
inline |
Return tile flip X.
|
inline |
Return tile flip Y.
|
inline |
Return tile Gid.
Sprite2D * Urho3D::TileMapObject2D::GetTileSprite | ( | ) | const |
Return tile sprite.
|
inline |
Return tile swap X and Y.
|
inline |
Return type.