Unity-Technologies / URDF-Importer

URDF importer
Apache License 2.0
230 stars 71 forks source link

Laurie/rigidbody editor #60

Closed LaurieCheers-unity closed 3 years ago

peifeng-unity commented 3 years ago

In addition, a minor thing of Unity coding standard. We may change _rigidbody to m_rigidbody?

- Use prefix + PascalCase for non-public field naming.
        - Prefixes: m_ = instance field, s_ = static readwrite field, k_ = const
LaurieCheers-unity commented 3 years ago

In addition, a minor thing of Unity coding standard. We may change _rigidbody to m_rigidbody?

- Use prefix + PascalCase for non-public field naming.
        - Prefixes: m_ = instance field, s_ = static readwrite field, k_ = const

It's a local variable, not a field, so should be camelCase with no prefix.