我正在为我的诺基亚制作一个小的测试拍摄,我已经为它制作了内容。有没有办法将Eclipse项目编译或移植到Midlet中,如果有,我该怎么做?
这只是我家里的诺基亚s40手机,我尝试下载S40 SDK,但我得到了 Mail.ru 广告软件,我不得不使用系统还原来摆脱它。
//this is just a section of the game's code. there's a lot more.
//variables
double counter = 0;
double thing = 0;
double thing2 = 0;
double epic = 1;
double epic2 = 1;
double phase = 0;
double div = 60/1000000000;
//the attack
private void attack1()
{
//bullet spread
float n = 4f;
if(counter % 1200 == 0 && counter > 10000)
{
//circles
for(float i = 0; i<360; i+= 360/5)
{
for(float j = -n; j < n+1; j++)
c.addBullet(new Bullet(WIDTH/2, 60, (1200/1.3)*counter+i+5*j, 0.03+0.003*((double)n-Math.abs(j)), 13, 13, 13, 13, 0, 0, this));
}
}
慕的地6264312
相关分类