UI/UX Design Principles

  1. UI design, animations, etc. are the responsibility of the UI/UX designer.

  2. Make it a rule that developers don't implement animations in code with Tween, etc. (crash prevention, maintainability).

  3. Manage colors, fonts, etc. centrally (leverage uPalette).

  4. Maintain a consistent theme/branding, rather than customizing individually.

  5. All resources are managed as Addressable, with Addler for resource lifetime management (similar to RAII).

  6. The Resources folder is not used. (No advantage over Addressable)

Last updated