- 注册时间
- 2005-3-8
- 最后登录
- 2007-11-26
⑥精研
夜天使
- 积分
- 1644

|

楼主 |
发表于 2007-10-30 08:39:34
|
显示全部楼层
多谢
但是…………
action myplay={
player=me;
my.pan+=5;
}
我是用lite-c写 没有“=”报错啊~~~
my.pan+=5;我是这样用的,上面忘记打了,但是这样写也报错
就算不写这个my.pan+=5;
写if()语句同样有问题,并在此行处报错
晕了~~~~~~
还有 自带的engine sdk例子??没找到
还有
function start_game()
{
BMAP* start_pcx="start.pcx";
BMAP* button_a_pcx="button_a.pcx";
BMAP* button_b_pcx="button_b.pcx";
BMAP* button_c_pcx="button_c.pcx";
PANEL* p_start_game=
{
bmap = start_pcx;//在这里出错-_-|||
pos_x = 120;
pos_y = 120;
layer = 10;
button(0,0,button_a_pcx,button_b_pcx,button_c_pcx,some_function,null,null)//同样出错, //说是图片未定义
}
while(1)
{
……
}
} |
|