各ステートメントが単一行にあり、複数行にわたってワードラップされないようにコードを自動的にフォーマットする方法、またはツール、またはアドインはありますか?例えば:
前:
// Store our custom animation data in the Tag property of the model.
model.Tag = new SkinningData(animationClips,
bindPose,
inverseBindPose);
後:
// Store our custom animation data in the Tag property of the model.
model.Tag = new SkinningData(animationClips, bindPose, inverseBindPose);
つまり、Beforeの例のようにフォーマットされたいくつかのコードを取得して、Afterフォーマットにします。