Added Rendering and Dynamic texture for Fire and it's behaviour

This commit is contained in:
Shredder
2026-04-01 14:03:38 +05:00
parent cbd81b47ce
commit 109bbcfdb1
7 changed files with 414 additions and 18 deletions

View File

@@ -56,4 +56,21 @@ public:
void tick();
};
class FireTexture: public DynamicTexture
{
typedef DynamicTexture super;
int _tick;
int _frame;
float* current;
float* next;
float* heat;
float* heata;
public:
FireTexture();
~FireTexture();
void tick();
};
#endif /*NET_MINECRAFT_CLIENT_RENDERER_PTEXTURE__DynamicTexture_H__*/