I wonder, is there easiest 3D engine ever?
Example:
If we want to make a simple moving animation using 3D objects...
I've tried many engine... they are too complicated for me. Any suggestion, please...Code:class 3DScreen : Easy3DScreen { void onEnterFrame(); //override the event void onLoad(); } 3DScreen scr; 3DObject obj; void 3DScreen::onLoad() { this.setFullscreen(TRUE); //set the 3D screen obj.load("myobject.3ds"); //load the object from file obj.setPosition(0, 0, 0); //set the position obj.setScale(150, 150); //resize the object this.addObject(obj); } void 3DScreen::onEnterFrame() { obj.setRelativePosition(1, 0, 0); //move the object to the left } int main() { scr.show(); }
It's doesn't matter if the engine in C, C++, VB, Delphi, or anything...
Thank's in advance.![]()



LinkBack URL
About LinkBacks



