view webGL/dandy/resources/bullet.js @ 12:61febc94fa62

upload dandy4.html,new xmlFile
author NOBUYASU Oshiro
date Thu, 15 Jul 2010 07:08:37 +0900
parents 03b67cd2bde7
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;
}