Urho3D
|
Tile map object. More...
#include </home/runner/work/urho3d-doxygen.github.io/urho3d-doxygen.github.io/urho3d_repo/Source/Urho3D/Urho2D/TileMapDefs2D.h>
Public Member Functions | |
TileMapObjectType2D | GetObjectType () const |
Return type. | |
const String & | GetName () const |
Return name. | |
const String & | GetType () const |
Return type. | |
const Vector2 & | GetPosition () const |
Return position. | |
const Vector2 & | GetSize () const |
Return size (for rectangle and ellipse). | |
unsigned | GetNumPoints () const |
Return number of points (use for script). | |
const Vector2 & | GetPoint (unsigned index) const |
Return point at index (use for script). | |
unsigned | GetTileGid () const |
Return tile Gid. | |
bool | GetTileFlipX () const |
Return tile flip X. | |
bool | GetTileFlipY () const |
Return tile flip Y. | |
bool | GetTileSwapXY () const |
Return tile swap X and Y. | |
Sprite2D * | GetTileSprite () const |
Return tile sprite. | |
bool | HasProperty (const String &name) const |
Return has property. | |
const String & | GetProperty (const String &name) const |
Return property value. | |
Public Member Functions inherited from Urho3D::RefCounted | |
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. | |
void | AddRef () |
Increment reference count. Can also be called outside of a SharedPtr for traditional reference counting. | |
void | ReleaseRef () |
Decrement reference count and delete self if no more references. Can also be called outside of a SharedPtr for traditional reference counting. | |
int | Refs () const |
Return reference count. | |
int | WeakRefs () const |
Return weak reference count. | |
RefCount * | RefCountPtr () |
Return pointer to the reference count structure. | |
Private Attributes | |
TileMapObjectType2D | objectType_ {} |
Object type. | |
String | name_ |
Name. | |
String | type_ |
Type. | |
Vector2 | position_ |
Position. | |
Vector2 | size_ |
Size (for rectangle and ellipse). | |
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.