Firstly, sorry as I probably seem like I post here too much...
Anyway, I am trying to make it so that the face graphic with the name of variable[1] is shown in my Hud.
I was looking at Dube's ABS and saw he did face graphics like this:
So I thought maybe something like this would work:
Turns out it didn't; how can I do this?
Anyway, I am trying to make it so that the face graphic with the name of variable[1] is shown in my Hud.
I was looking at Dube's ABS and saw he did face graphics like this:
Code:
@face_file = $1 + ".png"
self.contents.blt(16, 16, RPG::Cache.picture(@face_file), Rect.new(0, 0, 96, 96))
So I thought maybe something like this would work:
Code:
@facegfx = $game_variables[1] + ".png"
@face_sprite.bitmap = RPG::Cache.picture(@facegfx)
@face_sprite.x = 514 # Change the x value here
@face_sprite.y = 17 # Change the y value here
@face_sprite.z = 250 # Change the z value here
Turns out it didn't; how can I do this?