view dandy/resources/bullet.js @ 1:54589bb5e57d

add dandy
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 23 Feb 2012 14:51:33 +0900
parents
children
line wrap: on
line source

tama_lv1 = [];
tama_lv2 = [];

laser_lv1 = [];
laser_lv2 = [];
laser_lv2.push(new laser());
laser_lv3 = [];

tlv3 = [];

laser_lv1_end = -1;
tama_lv1_end = -1;
tama_lv2_end = -1;

k4count = 0;

function tama()
{
    this.x=0;
    this.y=0;
    this.scale = 1.0;
    return this;
}


function tama1()
{
    this.x=0;
    this.y=0;
    this.r=0;
    this.l=0;
    this.scale = 1.0;
    return this;
}

function tama2()
{
    this.x=0;
    this.y=0;
    this.r=0;
    this.l=0;
    this.rr=0;
    this.sr=0;
    this.sl=0;
    this.ll=0;
    this.scale = 1.0;
    return this;
}

function laser()
{
    this.x = 0;
    this.y = 0;
    this.sx = 0;
    this.sy = 0;
    this.r = 0;
    this.enemyno = 0;
    this.s = 0;
    this.scale = 1.0;
    return this;
}