Search found 11 matches

by cuatro
Wed May 30, 2007 4:15 pm
Forum: Beginners Help
Topic: VC++ 2005 Express Edition Question For a NOOB in this IDE
Replies: 3
Views: 234

actually VS2005 is very similar to VC++ 2005 Express. It just has alot more features and not limited to just C++. Its actually C++, C#, J#, Visual Basic, Delpoyment projects, web projects (ASP.NET). But the overall look and feel and where you create projects are all basically the same. check out thi...
by cuatro
Wed May 30, 2007 4:02 pm
Forum: Beginners Help
Topic: About Finitie State Machine class implementation method
Replies: 17
Views: 876

you can do a forward declaration of class Troll in your State.h file and that error should go away (just put "class Troll;" without quotes somewhere) . Although if you have that book then its actually ALOT easier if you use templates in the State class that he describes later on in the cha...
by cuatro
Tue May 29, 2007 10:16 pm
Forum: Beginners Help
Topic: VC++ 2005 Express Edition Question For a NOOB in this IDE
Replies: 3
Views: 234

I use VS2005 Team Edition for Software Developers but this is probably pretty similar to the express version. For a Console App: File-> New -> Project -> Visual C++ -> Win32 Console Application For a Windows App: File-> New -> Project -> Visual C++ -> Win32 Project Create a Name for the solution. Th...
by cuatro
Tue May 22, 2007 1:44 pm
Forum: Everything 2d/3d Graphics
Topic: Low poly human body [download available]
Replies: 26
Views: 10604

thanks for the model! i got it all mapped out to a biped system in 3d studio and seems to be working pretty well. im a modeling beginner but it worked pretty well and the walking looks pretty good with it.
by cuatro
Tue May 22, 2007 1:30 pm
Forum: Beginners Help
Topic: Key release detection?
Replies: 4
Views: 263

look at the irr::SEvent::KeyInput.PressedDown value.

also look in the tutorials to see how this is used.
by cuatro
Mon May 21, 2007 1:20 pm
Forum: Bug reports
Topic: .X animation file from 3d Studio 9 Bounding box problem
Replies: 2
Views: 353

thanks hybrid.

i figured my solution would not work for that reason, but my models and animations are so basic and simple it works for me until the issue is resolved. :lol:
by cuatro
Mon May 21, 2007 4:06 am
Forum: Bug reports
Topic: .X animation file from 3d Studio 9 Bounding box problem
Replies: 2
Views: 353

.X animation file from 3d Studio 9 Bounding box problem

with my newly created model with some basic auto-key generated animation every thing is showing up just fine and animating properly in irrlicht. however when i am doing my picking of this object the bounding box of the animation object is set to (0,0,0) which means its impossible to use getSceneNode...
by cuatro
Mon May 21, 2007 2:57 am
Forum: Everything 2d/3d Graphics
Topic: strange .X file from 3d studio max 9 problem
Replies: 1
Views: 1627

nevermind im an idiot and forgot about boolean objects :oops:
by cuatro
Sun May 20, 2007 11:50 pm
Forum: Everything 2d/3d Graphics
Topic: strange .X file from 3d studio max 9 problem
Replies: 1
Views: 1627

strange .X file from 3d studio max 9 problem

well im not sure exactly what is going on with this. and im a complete newb when it comes to 3d modeling. basically i have a box with a sphere on top of it and when i export to a .X file with the panda exporter for 3d studio 9 both the box and the sphere are being displayed but the sphere is always ...
by cuatro
Tue May 08, 2007 2:51 am
Forum: Beginners Help
Topic: Problem Understanding Movement Example.
Replies: 4
Views: 358

what compiler are you using? some compilers allow you to have switch statements without the brackets others may not. i pretty much just use visual studio 2005 and earlier and have never run into that error. what happens when you use brackets like that is it makes the scope of the variable (in this c...
by cuatro
Tue May 08, 2007 2:36 am
Forum: Beginners Help
Topic: basic lighting and colors question with .3ds file
Replies: 2
Views: 414

basic lighting and colors question with .3ds file

keep in mind im a 3D Studio Newb and i am just starting to learn to use irrlicht but am a very advanced in c++. I have a very simple 3ds file of a "tree". its basically a green cone with a brown cylinder on the bottom. im loading it up and displaying it just fine but if I have lighting ena...