Displaying 1 result from an estimated 1 matches for "ogreheadview".
2006 Jul 20
0
Shattered 0.3.3 - an opinionated 3d game development framework
...ttered is an opinionated 3d game DSL created in Ruby built on top of of
http://ogre3d.org Ogre . Originally inspired by Ruby on Rails, Shattered
aims to do for game development what Rails has done for web development.
Here is some sample code that you might see in a shattered application:
class OgreHeadView < ShatteredView::Base
mesh "ogre_head"
timer :every => :frame, :action => :update
def update
rotate(:y, 90*per_second) #rotate around the y axis 90 degrees per
second
end
end
This release is anything but minor. The final release before 0.4, here are
some of...