mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
6.4 update (minus sprites)
This commit is contained in:
@@ -28,6 +28,8 @@ class Game_Temp
|
||||
attr_accessor :unimportedSprites
|
||||
attr_accessor :nb_imported_sprites
|
||||
attr_accessor :loading_screen
|
||||
attr_accessor :custom_sprites_list
|
||||
attr_accessor :base_sprites_list
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# * Object Initialization
|
||||
@@ -55,6 +57,9 @@ class Game_Temp
|
||||
@message_window_showing = false
|
||||
@transition_processing = false
|
||||
@mart_prices = {}
|
||||
@custom_sprites_list ={}
|
||||
@base_sprites_list ={}
|
||||
|
||||
end
|
||||
|
||||
def clear_mart_prices
|
||||
|
||||
@@ -9,6 +9,7 @@ class Game_Switches
|
||||
# * Object Initialization
|
||||
#-----------------------------------------------------------------------------
|
||||
def initialize
|
||||
echoln caller
|
||||
@data = []
|
||||
end
|
||||
#-----------------------------------------------------------------------------
|
||||
|
||||
@@ -57,7 +57,7 @@ class Game_Picture
|
||||
# opacity : opacity level
|
||||
# blend_type : blend method
|
||||
#-----------------------------------------------------------------------------
|
||||
def show(name, origin, x, y, zoom_x, zoom_y, opacity, blend_type)
|
||||
def show(name, origin, x, y, zoom_x=100, zoom_y=100, opacity=255, blend_type=0)
|
||||
@name = name
|
||||
@origin = origin
|
||||
@x = x.to_f
|
||||
|
||||
@@ -9,7 +9,6 @@ class Game_Player < Game_Character
|
||||
attr_accessor :bump_se
|
||||
attr_accessor :charsetData
|
||||
attr_accessor :encounter_count
|
||||
attr_accessor :outfit_changed
|
||||
attr_accessor :x
|
||||
attr_accessor :y
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ class Game_CommonEvent
|
||||
#-----------------------------------------------------------------------------
|
||||
def initialize(common_event_id)
|
||||
@common_event_id = common_event_id
|
||||
|
||||
@interpreter = nil
|
||||
refresh
|
||||
end
|
||||
|
||||
@@ -141,6 +141,7 @@ end
|
||||
|
||||
class DependentEvents
|
||||
attr_reader :lastUpdate
|
||||
attr_reader :realEvents
|
||||
attr_writer :follows_player
|
||||
|
||||
def createEvent(eventData)
|
||||
|
||||
Reference in New Issue
Block a user