Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Modeling in DB?

Status
Not open for further replies.

TheEffigy

Programmer
Joined
Apr 1, 2005
Messages
2
Location
US
What programs / codes would i use do create models for games in dark basic?
 
Free programs that work with DarkBasic:
anim8or - JTEdit - Blender - DeleD - Wings 3D - HamaPatch - (not tested, but it can export .x)
LightRay3D -
Personally, i like anim8or and JTEdit the most... Ur choice

To load the objects in darkbasic:
type as followed:

load object "name_of_object.x",nr_of_object
<or>
load object "name_of_object.3ds",nr_of_object

DarkBasic can load 3 types of models:
- 3ds (3d studio format)
- x (directX)
- CSP (character shop's own format)
 
Wow, thanks a lot! I have one more question: I want to make a computer program and I was wondering, how could i let the "user" of my program change the locations of the verteces via mouse/keyboard?
 
DarkBasic cannot change/reposition verteces. BUT, it CAN reposition/rotate limbs.

use these commands for this:

(to rotate)
rotate limb object_nr,object_limb,x,y,z

(to offset)
offset limb object_nr,object_limb,x,y,z
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top