Gamestudio Links
Zorro Links
Newest Posts
loading historical data 1st time
by AndrewAMD. 04/14/23 12:54
Trade at bar open
by juanex. 04/13/23 19:43
Bug in Highpass2 filter
by rki. 04/13/23 09:54
Adding Limit Orders For IB
by scatters. 04/11/23 16:16
FisherN
by rki. 04/11/23 08:38
AUM Magazine
Latest Screens
SHADOW (2014)
DEAD TASTE
Tactics of World War I
Hecknex World
Who's Online Now
3 registered members (AndrewAMD, Grant, Neb), 908 guests, and 6 spiders.
Key: Admin, Global Mod, Mod
Newest Members
rki, FranzIII, indonesiae, The_Judge, storrealba
18919 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Version 7 Question #303227
12/26/09 23:47
12/26/09 23:47
Joined: Dec 2009
Posts: 1
T
tweeterpod Offline OP
Guest
tweeterpod  Offline OP
Guest
T

Joined: Dec 2009
Posts: 1
Used version 6 in the past - changes to version 7 confusing ?????
Can anyone explain how to best use the Project Manager?
I downloaded the models, loaded a template script loaded a witch - saved, built, ran - window appeared and I don't know how to move around in the new window or what the controls are.
Any help appreciated.



Last edited by tweeterpod; 12/26/09 23:48.
Re: Version 7 Question [Re: tweeterpod] #303688
12/31/09 13:41
12/31/09 13:41
Joined: Dec 2009
Posts: 128
China
frankjiang Offline
Member
frankjiang  Offline
Member

Joined: Dec 2009
Posts: 128
China
hey guys, A7 is add a new script system ,it looks better than a6.
lite-C!!!
this script add much useful function or Features,it is run a little slowly than
c-script , bt it is very easy contrl to write code ,you can choose a6, but you can alse used c-script. if you choose a7 ,you must be choose lite-C
your question :Used version 6 in the past - changes to version 7 confusing ?????

they are not confusing,guys.
a7 `s bottom of Graphics system is same to a6.
They are same from DirectX 9.
you know that you can used c-script(a6) to call DirectX 9`s function ,
and you can used lite-C to do that .
don`t be worry that .
lite-C is better than c-script!


development 3d game is interesting!
Re: Version 7 Question [Re: frankjiang] #303690
12/31/09 14:02
12/31/09 14:02
Joined: Oct 2007
Posts: 5,209
İstanbul, Turkey
Quad Offline
Senior Expert
Quad  Offline
Senior Expert

Joined: Oct 2007
Posts: 5,209
İstanbul, Turkey
@frank, how do you know lite-c is slower? lite-c is a ccmpiled language thus should be fater than c-script.


3333333333
Re: Version 7 Question [Re: Quad] #303698
12/31/09 16:26
12/31/09 16:26
Joined: Dec 2009
Posts: 128
China
frankjiang Offline
Member
frankjiang  Offline
Member

Joined: Dec 2009
Posts: 128
China
you can did a test for this same function to run by c-script and lite-c?
you know high language(javascript) is slowly than low language(C++)


development 3d game is interesting!
Re: Version 7 Question [Re: frankjiang] #303707
12/31/09 17:47
12/31/09 17:47
Joined: Oct 2007
Posts: 5,209
İstanbul, Turkey
Quad Offline
Senior Expert
Quad  Offline
Senior Expert

Joined: Oct 2007
Posts: 5,209
İstanbul, Turkey
@frank, things are not benchmarked this way, but lite-c is faster.
second, you cant compare javascript and c++ in any way. You can't compare speeds, can't compare their levels.

Javascript is not a programming language it's a scripting language, and c++ is a high level programming language.


3333333333
Re: Version 7 Question [Re: Quad] #303712
12/31/09 19:48
12/31/09 19:48
Joined: Oct 2009
Posts: 149
Germany
M
muffel Offline
Member
muffel  Offline
Member
M

Joined: Oct 2009
Posts: 149
Germany
@ Quadraxas and frankjiang:
you are both out of topic
@ tweeterpod:
the easiest way to look how the level looks ingame run the level (start the .wmb file) and move with the wasd keys and the mouse hope my answer is nearer to the topic than the one of frankjiang

how do you use the project in the best way you have to get on your own. there I'm not a huge help because i'm very new to wed, I used before only lite-C.

muffel


Last edited by muffel; 12/31/09 19:55.
Re: Version 7 Question [Re: muffel] #303728
01/01/10 07:54
01/01/10 07:54
Joined: Dec 2009
Posts: 128
China
frankjiang Offline
Member
frankjiang  Offline
Member

Joined: Dec 2009
Posts: 128
China
@ tweeterpod:
your question:
don't know how to move around in the new window or what the controls are.

add action to (witch )

//--------------------------------------------------------------------
action witch_ac()
{
var anim = 0;
//Animation percentage within the scene, 0..100
var speed= 5;
while(1){
//charcter frame manage
// stand (4 frame)
// walk (4 frame)
// run (4 frame)
// duck (4 frame)
// craw1 (4 frame)
// jump (6 frame)
// attack (3 frame)
// death (9 frame)
if(key_w){
anim = (anim + speed*time_step)%100;
str_for_num(str_1,anim);
ent_animate(me,"walk",anim,ANM_CYCLE);
}
wait(1);
}
}
function main(){
camera.ambient=100;

video_mode = 6;
fps_max = 24;
level_load("a.wmb");
}
//--------------------------------------------------------------------

^_^,you can press key:w to walk.


development 3d game is interesting!

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