New account registration is temporarily disabled.

UNITY'S PROFILE

unity
You're magical to me.
12540
I don't want to wake up because I'm happy here.
Izrand Allure
A JRPG-style WLW romance adventure. Monsters have invaded Izrand! Heroes Vivica and Lynette find love and despair as they seek to save a continent.

ÿþ# Add function for temporarily switching a window's current drawing font.

class Font

  def use( window )

	old_font = window.contents.font.dup

	window.contents.font = self

	yield

	window.contents.font = old_font  

  end

end



# Fixes the arrow character (’!) used in places in the UI

# since custom font does not support that character

module Mez

  module ArrowFix

	FONT = Font.new(["VL Gothic", "Arial"])  # This is the font used for the arrows, checked in order.

  end

end



# For Actor Equip Window

class Window_EquipStatus

  alias mez_wes_dra draw_right_arrow

  def draw_right_arrow(x, y)

	Mez::ArrowFix::FONT.use(self) do

	  mez_wes_dra(x, y)

	end

  end

end



# For Yanfly Victory Aftermath - remove if not using that script

class Window_VictoryLevelUp

  alias mez_wvlu_da draw_arrows

  def draw_arrows

	Mez::ArrowFix::FONT.use(self) do

	  mez_wvlu_da

	end

  end

end