mirror of
https://github.com/MapMakersAndProgrammers/TankiOnline2.0DemoClient.git
synced 2025-10-27 18:39:10 -07:00
Initial commit
This commit is contained in:
47
src/package_48/A3D2JointBindTransform.as
Normal file
47
src/package_48/A3D2JointBindTransform.as
Normal file
@@ -0,0 +1,47 @@
|
||||
package package_48
|
||||
{
|
||||
import package_33.name_155;
|
||||
|
||||
public class A3D2JointBindTransform
|
||||
{
|
||||
private var var_417:A3D2Transform;
|
||||
|
||||
private var var_101:name_155;
|
||||
|
||||
public function A3D2JointBindTransform(bindPoseTransform:A3D2Transform, id:name_155)
|
||||
{
|
||||
super();
|
||||
this.var_417 = bindPoseTransform;
|
||||
this.var_101 = id;
|
||||
}
|
||||
|
||||
public function get bindPoseTransform() : A3D2Transform
|
||||
{
|
||||
return this.var_417;
|
||||
}
|
||||
|
||||
public function set bindPoseTransform(value:A3D2Transform) : void
|
||||
{
|
||||
this.var_417 = value;
|
||||
}
|
||||
|
||||
public function get id() : name_155
|
||||
{
|
||||
return this.var_101;
|
||||
}
|
||||
|
||||
public function set id(value:name_155) : void
|
||||
{
|
||||
this.var_101 = value;
|
||||
}
|
||||
|
||||
public function toString() : String
|
||||
{
|
||||
var result:String = "A3D2JointBindTransform [";
|
||||
result += "bindPoseTransform = " + this.bindPoseTransform + " ";
|
||||
result += "id = " + this.id + " ";
|
||||
return result + "]";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user