Gamestudio Links
Zorro Links
Newest Posts
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
5 registered members (AbrahamR, wdlmaster, 7th_zorro, dr_panther, 1 invisible), 764 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Can't make my terrain visible. #88675
09/04/06 02:10
09/04/06 02:10
Joined: Jun 2005
Posts: 130
K
khanoftruth Offline OP
Member
khanoftruth  Offline OP
Member
K

Joined: Jun 2005
Posts: 130
I am working on a pretty big project, and my first level is outdoors. The terrain isn't visible, and I need it to be.

You can download the terrain here: http://rapidshare.de/files/31874746/Level1.hmp

Any help is greatly appriciated. I am just an intermediate user, but i am working on an awesome MP game. I am good at scripting, animation, and design, but I can't get the artistic stuff down. I can make better pictures in paint than in photoshop.


The Galvanic Productions Hompage: www.GalvanicProductions.tk For our current project, click on the Nirvana link.
Re: Can't make my terrain visible. [Re: khanoftruth] #88676
09/04/06 05:37
09/04/06 05:37
Joined: Apr 2006
Posts: 1,551
Netherlands
D3D Offline
Serious User
D3D  Offline
Serious User

Joined: Apr 2006
Posts: 1,551
Netherlands
Hello,

I download and tried your terrain, it's working. The reason that you don't see it when you load it from WED preview is because you don't have a player inside your level and the camera might be pointing the wrong way.

You should create a new level in WED, save it, then import your terrain inside WED. Then import the 'player' entity and put it with it's feet on ground. Add A6 templates to your level (map properties) and add player + camera scripts, attach player action to your player model. Compile, save, run & fun. That's it!

Or you could script a static camera that looks in the right direction and put that function inside the main function of your script, so it's loaded at startup. Like this (put your terrain at 0,0,0 in WED):

Code:
function MyStaticView()
{
camera.x = -200;
camera.y = 350;
camera.z = 150;
camera.pan = -50;
camera.tilt = -5;
camera.roll = 0;
}


Code:
function main
{
// main game function where you load level etc..
MyStaticView();
}


All the best,

Dusty


smile
Re: Can't make my terrain visible. [Re: D3D] #88677
09/04/06 13:55
09/04/06 13:55
Joined: Jun 2005
Posts: 130
K
khanoftruth Offline OP
Member
khanoftruth  Offline OP
Member
K

Joined: Jun 2005
Posts: 130
Thanks.


The Galvanic Productions Hompage: www.GalvanicProductions.tk For our current project, click on the Nirvana link.
Re: Can't make my terrain visible. [Re: khanoftruth] #88678
09/04/06 14:55
09/04/06 14:55
Joined: Jun 2005
Posts: 130
K
khanoftruth Offline OP
Member
khanoftruth  Offline OP
Member
K

Joined: Jun 2005
Posts: 130
I did get it to work, but I don't know how.


The Galvanic Productions Hompage: www.GalvanicProductions.tk For our current project, click on the Nirvana link.
Re: Can't make my terrain visible. [Re: khanoftruth] #88679
09/04/06 20:43
09/04/06 20:43
Joined: Aug 2005
Posts: 1,185
Ukraine
Lion_Ts Offline
Serious User
Lion_Ts  Offline
Serious User

Joined: Aug 2005
Posts: 1,185
Ukraine
Quote:

black box technology




Re: Can't make my terrain visible. [Re: Lion_Ts] #88680
09/04/06 22:56
09/04/06 22:56
Joined: Jun 2005
Posts: 130
K
khanoftruth Offline OP
Member
khanoftruth  Offline OP
Member
K

Joined: Jun 2005
Posts: 130
???


The Galvanic Productions Hompage: www.GalvanicProductions.tk For our current project, click on the Nirvana link.

Moderated by  HeelX, rvL_eXile 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1