Ruby is an open-source dynamic OO interpreted language created by Yukihiro Matsumoto (Matz) in the 1990s that combines the good bits from Perl, Smalltalk and Lisp. It supports multiple programming paradigms. Ruby's primary purpose is to "help every programmer in the world to be productive, and to ...
1
vote
0answers
121 views
Moving while doing loop animation in RPGMaker
I made a custom class to display character portrait in RPGMaker XP
Here is the class :
class Poser
attr_accessor :images
def initialize
@images = Sprite.new
@images.bitmap = ...
0
votes
0answers
78 views
RMXP / RGSS - Detecting in game process in a script
Well hello everyone. I am making a script but I bumped into a problem:
I want to insert in the script where it detects whether the actor equips, for example, weapon 1, then do something (which i ...
-1
votes
0answers
21 views
TMX loader for Gosu
Is there a fully operational and updated TMX tiled map loader for gosu?
If not, is there another option for tiled maps that will save me the need to write my own implementation?