/** Keeps current relative transform as the relative transform to the new parent. */
KeepRelative,
/** Automatically calculates the relative transform such that the attached component maintains the same world transform. */
KeepWorld,
/** Snaps transform to the attach point */
SnapToTarget,
假设A原来attach到B,后来attach到C:
KeepWorld:保持A世界位置不变,重新计算A相对于parent©的相对位置
KeepRelative:保持A相对于B的位置到A相对于C,重新计算A的世界位置。
SnapToTarget:把A移到C的位置,重新计算A的世界位置和相对于parent©的相对位置
在UE4中检验:
首先在关卡中添加两个测试用的actor: 左边立方体是test1,右边是test2。