About Store Forum Documentation Contact



Post Reply 
Some problems
Author Message
alexburkee Offline
Member

Post: #1
Some problems
Okay so I created a test map
It has a maze model in it and some water around it and the default character.
When I build the game inside the world editor and play it only shows a shadow of the maze but no maze.. and where the shadow is I can walk right through where the maze is supposed to be.
Is this becuase of the model?

Second.
The default character is running super slow and the animation doesn't fit.
04-18-2011 02:54 AM
Find all posts by this user Quote this message in a reply
siwykon Offline
Member

Post: #2
RE: Some problems
(04-18-2011 02:54 AM)alexburkee Wrote:  Second.
The default character is running super slow and the animation doesn't fit.
Do you try change character speed?
The best way is change speed in create function!

void Player::create(Game::ObjParams &obj)
{
speed = 6; //How fast player walk, run
}
04-18-2011 05:23 AM
Find all posts by this user Quote this message in a reply
Dandruff Offline
Member

Post: #3
RE: Some problems
maybe you're missing the phys body for the maze
04-18-2011 07:04 AM
Find all posts by this user Quote this message in a reply
alexburkee Offline
Member

Post: #4
RE: Some problems
Okay It works now and the character was running fast because I changed the scale of it. Its all good now Thanks!

Next problem!
I put some models in game and well.. you can't see some of the walls.. for example I put in an outside wall of a castle and if i am on the outside of the model I can see the gate rods there but if I am on the inside I cannot see it and it looks like a blank space where its supposed to be..

Also this may seem like a noob question but..
I can't seem to move the model up and down.. I can right click and drag it to all sides but not up and down?

Thanks in advance!
04-18-2011 11:03 PM
Find all posts by this user Quote this message in a reply
Dynad Offline
Member

Post: #5
RE: Some problems
1) set culling off at the material editor.. so both sides of the polygon renders a texture.

2) set aligning to heighmap off... and then use the ctrl key to move up and down.

There is always evil somewhere, you just have to look for it properly.
04-18-2011 11:08 PM
Visit this user's website Find all posts by this user Quote this message in a reply
alexburkee Offline
Member

Post: #6
RE: Some problems
Thanks so much! It works !

You guys are great!
04-18-2011 11:45 PM
Find all posts by this user Quote this message in a reply
alexburkee Offline
Member

Post: #7
RE: Some problems
My character is falling through the map at some parts of the map :S
Its flat ground
04-19-2011 02:17 AM
Find all posts by this user Quote this message in a reply
Dandruff Offline
Member

Post: #8
RE: Some problems
check if the mtrl is of a solid type, not null mtrl
04-19-2011 02:47 AM
Find all posts by this user Quote this message in a reply
Dynad Offline
Member

Post: #9
RE: Some problems
(04-19-2011 02:17 AM)alexburkee Wrote:  My character is falling through the map at some parts of the map :S
Its flat ground

And make sure that the capsule physbox isn't too small.. which can cause this problem as well.

There is always evil somewhere, you just have to look for it properly.
(This post was last modified: 04-19-2011 09:30 AM by Dynad.)
04-19-2011 09:29 AM
Visit this user's website Find all posts by this user Quote this message in a reply
alexburkee Offline
Member

Post: #10
RE: Some problems
It fixed its self all I had to do is rebuild the world and it worked for some reason.
04-19-2011 06:26 PM
Find all posts by this user Quote this message in a reply
Post Reply