[Blender] How to repair broken shape of a object by Lattice Modifier.

If you happen the situation that the shape of your object was collapsed by Lattice Modifier like for example, following case. [Before applying Lattice Modifier] [After applying Lattice Modifier] Just applying, the shape of the target object was broken. (This is a face of Merlion 3D model I created…)   [Reason] The reason is that when adjusting the Lattice flame to fit the target object in Edit mode, this phenomenon... Read more

[C#] Copy of Array in C#

When you copy an array in C#, for example, to copy from Array A to Array B, and if you want to use those amounts separately…, don’t write like following difinitely. Array_B = Array_A; I believe that it’s common sense for intermediate level, this is just passing Reference type. Therefore, if you change the amount of Array_B, automatically the amount of Array_A will be changed. (We can also say that... Read more