mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-09 22:24:58 +00:00
Outfits migration again
This commit is contained in:
@@ -561,3 +561,7 @@ def fossilsGuyBattle(level = 20, end_message = "")
|
||||
)
|
||||
|
||||
end
|
||||
|
||||
def isOnPinkanIsland()
|
||||
return false
|
||||
end
|
||||
@@ -136,7 +136,7 @@ class Sprite_Character
|
||||
return if @character.is_a?(Game_Event) && !@character.should_update?
|
||||
super
|
||||
refresh_graphic
|
||||
#return if !@charbitmap
|
||||
return if !@charbitmap
|
||||
@charbitmap.update if @charbitmapAnimated
|
||||
bushdepth = @character.bush_depth
|
||||
if bushdepth == 0
|
||||
|
||||
18
Data/Scripts/998_InfiniteFusion/UI/PIF_PauseMenu.rb
Normal file
18
Data/Scripts/998_InfiniteFusion/UI/PIF_PauseMenu.rb
Normal file
@@ -0,0 +1,18 @@
|
||||
MenuHandlers.add(:pause_menu, :outfit, {
|
||||
"name" => _INTL("Outfit"),
|
||||
"order" => 51,
|
||||
"condition" => proc { $player.can_change_outfit },
|
||||
"effect" => proc { |menu|
|
||||
|
||||
pbFadeOutIn do
|
||||
#pbCommonEvent(COMMON_EVENT_OUTFIT)
|
||||
#todo give Favorite outfit (used to be done through common event)
|
||||
changeOutfit()
|
||||
menu.silent_end_screen
|
||||
end
|
||||
next false
|
||||
|
||||
|
||||
}
|
||||
})# frozen_string_literal: true
|
||||
|
||||
Reference in New Issue
Block a user