用于if语句的Unity MonoDevelop Auto Indent

时间:2014-06-30 05:57:36

标签: unity3d monodevelop

MonoDevelop中的自动缩进表现得很奇怪。当我添加结束括号时,它会像我这样格式化我的代码:

    if (joints.Length != 1) {
                    IntegrationTest.Fail ("Cat1 should have 1 HingeJoint2D, but has " + joints.Length);
            }

我希望它像这样格式化:

    if (joints.Length != 1) {
        IntegrationTest.Fail ("Cat1 should have 1 HingeJoint2D, but has " + joints.Length);
    }

如何更正自动格式化?

1 个答案:

答案 0 :(得分:0)

您可以通过转到:

来设置默认值
  

工具 - >自定义政策 - >默认

这应该允许您返回默认格式。