Exemplo n.º 1
0
 public void Assign(AppMain.AOS_ACT_ACM acm)
 {
     this.trans_x       = acm.trans_x;
     this.trans_y       = acm.trans_y;
     this.trans_z       = acm.trans_z;
     this.color         = acm.color;
     this.fade          = acm.fade;
     this.trans_scale_x = acm.trans_scale_x;
     this.trans_scale_y = acm.trans_scale_y;
     this.scale_x       = acm.scale_x;
     this.scale_y       = acm.scale_y;
     this.rotate        = acm.rotate;
 }
Exemplo n.º 2
0
 public void Assign(AppMain.AOS_SPRITE from)
 {
     this.flag     = from.flag;
     this.blend    = from.blend;
     this.color    = from.color;
     this.fade     = from.fade;
     this.center_x = from.center_x;
     this.center_y = from.center_y;
     this.prio     = from.prio;
     this.offset   = from.offset;
     this.rotate   = from.rotate;
     this.tex_id   = from.tex_id;
     this.clamp    = from.clamp;
     this.uv       = from.uv;
     this.texlist  = from.texlist;
     this.hit.Assign(from.hit);
 }