irpg Community
สอบถามวิธีแก้สคริปท์ ให้แสดงไอคอนเป็น32 ในหน้าEquip - Printable Version

+- irpg Community (https://irpg.in.th)
+-- Forum: irpg Fabella RPG Maker Academia (https://irpg.in.th/forum-4.html)
+--- Forum: RPG Maker Engine School (https://irpg.in.th/forum-7.html)
+--- Thread: สอบถามวิธีแก้สคริปท์ ให้แสดงไอคอนเป็น32 ในหน้าEquip (/thread-2461.html)



สอบถามวิธีแก้สคริปท์ ให้แสดงไอคอนเป็น32 ในหน้าEquip - arttoy - 06-14-2015

[Image: 150614083301.PNG]
คือในจุดอื่นผมแก้หมดแร้ว แต่ในจุดนี้หาสคริปท์ไม่เจอจริงๆครับ
ขอบคุณครับ


RE: สอบถามวิธีแก้สคริปท์ ให้แสดงไอคอนเป็น32 ในหน้าEquip - hengmana - 06-14-2015

ตรงช่อง Window_Base อยู่บรรทัดล่างสุด

Code:
def draw_item_name(item, x, y)
   if item == nil
     return
   end
   bitmap = RPG::Cache.icon(item.icon_name)
   self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24))
   self.contents.font.color = normal_color
   self.contents.draw_text(x + 28, y, 212, 32, item.name)
 end

แก้เป็น

Code:
def draw_item_name(item, x, y)
   if item == nil
     return
   end
   bitmap = RPG::Cache.icon(item.icon_name)
   self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24)) if bitmap.height == 24
   self.contents.blt(x, y , bitmap, Rect.new(0, 0, 32, 32)) if bitmap.height == 32
   self.contents.font.color = normal_color
   self.contents.draw_text(x + 28 + 4, y, 212, 32, item.name)
 end



RE: สอบถามวิธีแก้สคริปท์ ให้แสดงไอคอนเป็น32 ในหน้าEquip - arttoy - 06-14-2015

ขอบคุณมากครับ กดรีเฟรตทุก10นาทีเรย ฮาๆ