Urho3D::TileMapObject2D Class Reference
Urho3D::TileMapObject2D Class Reference
Tile map object. More...
#include <Urho3D/Urho2D/TileMapDefs2D.h>
Inheritance diagram for Urho3D::TileMapObject2D:
Collaboration diagram for Urho3D::TileMapObject2D:
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). | |
int | GetTileGid () const |
Return tile Gid. | |
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. | |
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). | |
int | gid_ |
Gid (for tile). | |
SharedPtr< Sprite2D > | sprite_ |
Sprite (for tile). | |
SharedPtr< PropertySet2D > | propertySet_ |
Property set. | |
Friends | |
class | TmxObjectGroup2D |
Detailed Description
Tile map object.
The documentation for this class was generated from the following files:
- Source/Urho3D/Urho2D/TileMapDefs2D.h
- Source/Urho3D/Urho2D/TileMapDefs2D.cpp