mirror of
https://github.com/BluTac10/Xbox-Neo.git
synced 2026-06-22 18:05:40 +00:00
feat: armorstand from decomp
This commit is contained in:
@@ -321,3 +321,14 @@ void ModelPart::mimic(ModelPart *o)
|
||||
yRot = o->yRot;
|
||||
zRot = o->zRot;
|
||||
}
|
||||
|
||||
void ModelPart::copyModelPart(ModelPart* src, ModelPart* dst) {
|
||||
if (!src || !dst) return;
|
||||
|
||||
dst->x = src->x;
|
||||
dst->y = src->y;
|
||||
dst->z = src->z;
|
||||
dst->xRot = src->xRot;
|
||||
dst->yRot = src->yRot;
|
||||
dst->zRot = src->zRot;
|
||||
}
|
||||
Reference in New Issue
Block a user