1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-08-07 22:59:50 +00:00

Minor extensions to script interface:

- quad_setRepeatTexture()
- quad_setRepeatScale()
- quad_isRepeatTexture()

(bone, entity, ... as well)

- getOldDT() - return unmodified dt
- getDT() - as passed to update(), for complicated edge cases
            where dt is unavailable but required.
This commit is contained in:
fgenesis 2013-07-15 03:22:41 +02:00
parent 8ac88b9749
commit 93c59fdb28
3 changed files with 41 additions and 2 deletions

View file

@ -1277,6 +1277,7 @@ public:
float aspectX, aspectY;
float get_old_dt() { return old_dt; }
float get_current_dt() { return current_dt; }
bool debugLogActive;
@ -1330,6 +1331,7 @@ protected:
void initIcon();
float old_dt;
float current_dt;
std::string debugLogPath;