mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-07 21:24:59 +00:00
Fixes new game crash
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -13,12 +13,10 @@ class Sprite_Hair < Sprite_Wearable
|
||||
crop_spritesheet(direction, current_frame, action)
|
||||
adjust_layer()
|
||||
set_sprite_position(@action, direction, current_frame)
|
||||
adjust_position_for_nonAnimated_hairstyles(current_frame)
|
||||
end
|
||||
|
||||
def crop_spritesheet(direction, current_frame, action)
|
||||
sprite_x = ((current_frame)) * @frameWidth
|
||||
sprite_x = 0 if @frameWidth == @wearableBitmap.width
|
||||
# Don't animate surf
|
||||
sprite_x = 0 if action == "surf"
|
||||
|
||||
@@ -26,10 +24,6 @@ class Sprite_Hair < Sprite_Wearable
|
||||
@sprite.src_rect.set(sprite_x, sprite_y, @frameWidth, @frameHeight)
|
||||
end
|
||||
|
||||
def adjust_position_for_nonAnimated_hairstyles(current_frame)
|
||||
return if @frameWidth != @wearableBitmap.width
|
||||
@sprite.y -= 2 if current_frame % 2 == 1
|
||||
end
|
||||
def set_sprite_position(action, direction, current_frame)
|
||||
@sprite.x = @player_sprite.x - @player_sprite.ox
|
||||
@sprite.y = @player_sprite.y - @player_sprite.oy
|
||||
|
||||
@@ -8,14 +8,15 @@ class Sprite_Player < Sprite_Character
|
||||
|
||||
hatFilename = ""
|
||||
hairFilename = ""
|
||||
@hair = Sprite_Hair.new(self, hairFilename, @character_name, @viewport)
|
||||
@hat = Sprite_Hat.new(self, hatFilename, @character_name, @viewport,3)
|
||||
@hat2 = Sprite_Hat.new(self, hatFilename, @character_name, @viewport,2)
|
||||
@hair = Sprite_Hair.new(self, hairFilename, @character_name, @viewport)
|
||||
|
||||
@previous_skinTone = 0
|
||||
|
||||
@current_bitmap = nil
|
||||
@previous_action =nil
|
||||
echoln "init playa"
|
||||
getClothedPlayerSprite(true)
|
||||
end
|
||||
|
||||
|
||||
Binary file not shown.
@@ -1,7 +1 @@
|
||||
1741548975
|
||||
1741548979
|
||||
1741548983
|
||||
1741548990
|
||||
1741549010
|
||||
1741549014
|
||||
1741549014
|
||||
1741556769
|
||||
@@ -723,3 +723,20 @@ Graphics/CustomBattlers/spritesheets/spritesheets_base/336.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/246/246.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_base/317.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/317/317.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_base/358.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/358/358.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_base/345.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/345/345.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/353/353.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/281/281.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_base/372.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_base/464.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/464/464.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/58/58.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_base/144.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/144/144.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_base/145.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/145/145.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_base/431.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/431/431.png
|
||||
Graphics/CustomBattlers/spritesheets/spritesheets_custom/469/469b.png
|
||||
|
||||
Reference in New Issue
Block a user