Urho3D
Public Member Functions | Private Attributes | Friends | List of all members
Urho3D::TileMapObject2D Class Reference

Tile map object. More...

#include </home/runner/work/rurho3d.github.io/rurho3d.github.io/urho3d_repo/Source/Urho3D/Urho2D/TileMapDefs2D.h>

Inheritance diagram for Urho3D::TileMapObject2D:
Urho3D::RefCounted

Public Member Functions

TileMapObjectType2D GetObjectType () const
 Return type.
 
const StringGetName () const
 Return name.
 
const StringGetType () const
 Return type.
 
const Vector2GetPosition () const
 Return position.
 
const Vector2GetSize () const
 Return size (for rectangle and ellipse).
 
unsigned GetNumPoints () const
 Return number of points (use for script).
 
const Vector2GetPoint (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.
 
Sprite2DGetTileSprite () const
 Return tile sprite.
 
bool HasProperty (const String &name) const
 Return has property.
 
const StringGetProperty (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.
 
RefCountedoperator= (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.
 
RefCountRefCountPtr ()
 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< Vector2points_
 Points(for polygon and polyline).
 
unsigned gid_ {}
 Gid (for tile).
 
SharedPtr< Sprite2Dsprite_
 Sprite (for tile).
 
SharedPtr< PropertySet2DpropertySet_
 Property set.
 

Friends

class TmxObjectGroup2D
 

Detailed Description

Tile map object.


The documentation for this class was generated from the following files: