HumbleBeginnings Source Download and Tutorial

Problems building or running the engine, queries about how to use features etc.
jonng
Gnoblar
Posts: 3
Joined: Sat Jan 22, 2005 4:02 pm

HumbleBeginnings Source Download and Tutorial

Post by jonng »

hello everyone, ive been experimenting with the OGRE engine the past few days. i realized that the source code of humble beginnings and the tutorial steps in the tutorial section in the site is not the same.

i followed the tutorial steps and i get a bunch of "identifier error not found". i examined the source downloads of the same tutorial and managed to run without any problems.

after comparing the 2, i notice that the tutorial structures the code differently frm the source. this problem only happens with the frame listener class http://www.ogre3d.org/docs/Tutorials/2_ ... tener.html
User avatar
haffax
OGRE Retired Moderator
OGRE Retired Moderator
Posts: 4823
Joined: Fri Jun 18, 2004 1:40 pm
Location: Berlin, Germany
x 8

Post by haffax »

Thanks for the information. The tutorial will be reworked soon (probably next week) and put into the Ogre-wiki. I'll correct this discrepancy then and convert it to the new Ogre version, too.
team-pantheon programmer
creators of Rastullahs Lockenpracht
Nordbo
Gnoblar
Posts: 4
Joined: Sat Jan 15, 2005 8:53 pm

Post by Nordbo »

Also the Lights, Action, Camera tutorial on http://www.ogre3d.org/docs/Tutorials/3_ ... ement.html could need an update. with Ogre 15.2 I haven't been able to make yaw() work with a Real directly , and according to the documentation it needs a Radian.
User avatar
haffax
OGRE Retired Moderator
OGRE Retired Moderator
Posts: 4823
Joined: Fri Jun 18, 2004 1:40 pm
Location: Berlin, Germany
x 8

Post by haffax »

Nordbo, yes I know. This will be done too. yaw() and all other SceneNode methods that took a Real angle value as input interpreted the Real as Degree, So till I update it you can just change node->yaw(value); to node->yaw(Degree(value));
team-pantheon programmer
creators of Rastullahs Lockenpracht
Nordbo
Gnoblar
Posts: 4
Joined: Sat Jan 15, 2005 8:53 pm

Post by Nordbo »

hehe... had a problem with that (although I used Radian). I forgot to include OgreMath.h :oops: