Zum Speicherproblem:
Ich habe im englischen Forum mal gelesen das es beim Ace wohl manchmal einen Bug gibt das gelöschte Bilder nicht richtig gelöscht werden (disposed)
und sich so langsam der Leistungsverbrauch steigert.
Ich habe leider grad keinen Link, es gibt aber ein Fix Script dafür:
(Ich war mir bis eben nicht sicher ob dieses Script stimmt oder ob es humbug ist)
#==============================================================================
# Picture Bug Fix
#------------------------------------------------------------------------------
# Author : Raizen884
# Credits : JohnBolton, Gab!
# Community : www.centrorpgmaker.com
# This script corrects a bug in the default scripts in which pictures continued
# to be updated even after they were erased, which caused lag.
#------------------------------------------------------------------------------
# Place this script above all other scripts in the Materials section.
#==============================================================================
class Sprite_Picture < Sprite
def update
super
if @picture.name != ""
update_bitmap
update_origin
update_position
update_zoom
update_other
else
self.bitmap.dispose if self.bitmap != nil
end
end
end