1.0 release

This commit is contained in:
Anthony Samms
2025-11-20 17:55:57 -05:00
parent 547761eb0d
commit cf2b5f07a6
34 changed files with 1223 additions and 19 deletions

View File

@@ -107,7 +107,7 @@ class Chibi2(BaseChibi):
self.rotate.restart()
def draw(self, tex: TextureWrapper):
origin = ray.Vector2(64, 64)
origin = ray.Vector2(tex.textures[self.name][str(self.index)].width//2, tex.textures[self.name][str(self.index)].height//2)
tex.draw_texture(self.name, str(self.index), x=self.hori_move.attribute+origin.x, y=origin.y+(self.is_2p*tex.skin_config["game_2p_offset"].y), origin=origin, rotation=self.rotate.attribute)
class Chibi4(BaseChibi):