alexburkee
Member
|
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 |
|
siwykon
Member
|
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 |
|
Dandruff
Member
|
RE: Some problems
maybe you're missing the phys body for the maze
|
|
04-18-2011 07:04 AM |
|
alexburkee
Member
|
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 |
|
Dynad
Member
|
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 |
|
alexburkee
Member
|
RE: Some problems
Thanks so much! It works !
You guys are great!
|
|
04-18-2011 11:45 PM |
|
alexburkee
Member
|
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 |
|
Dandruff
Member
|
RE: Some problems
check if the mtrl is of a solid type, not null mtrl
|
|
04-19-2011 02:47 AM |
|
Dynad
Member
|
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 |
|
alexburkee
Member
|
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 |
|