More fixes.

--HG--
branch : dev
This commit is contained in:
Martí­n Lucas Golini
2017-02-23 00:08:38 -03:00
parent 75d5a3a126
commit 58cbdebb3b
11 changed files with 65 additions and 48 deletions

View File

@@ -284,27 +284,27 @@ class EE_API TileMap {
virtual GameObject * CreateGameObject( const Uint32& Type, const Uint32& Flags, MapLayer * Layer, const Uint32& DataId = 0 );
void CalcTilesClip();
void calcTilesClip();
void Clamp();
void clamp();
void GetMouseOverTile();
void getMouseOverTile();
void GridDraw();
void gridDraw();
void MouseOverDraw();
void mouseOverDraw();
void DeleteLayers();
void deleteLayers();
std::vector<std::string> GetTextureAtlases();
std::vector<std::string> getTextureAtlases();
void CreateEmptyTile();
void createEmptyTile();
void UpdateScreenAABB();
void updateScreenAABB();
void CreateLightManager();
void createLightManager();
virtual void OnMapLoaded();
virtual void onMapLoaded();
};
}}

View File

@@ -77,6 +77,8 @@ class EE_API UISpinBox : public UIComplexControl {
void adjustChilds();
void internalValue( const Float& Val, const bool& Force = false );
virtual void onSizeChange();
virtual void onAlphaChange();
};