``bOverride_ `` is the codegen-emitted toggle field that gates whether the corresponding UPROPERTY's value gets written back to the mjs struct.
(prop_name: str)
| 176 | |
| 177 | |
| 178 | def override_toggle_name(prop_name: str) -> str: |
| 179 | """``bOverride_<X>`` is the codegen-emitted toggle field that |
| 180 | gates whether the corresponding UPROPERTY's value gets written |
| 181 | back to the mjs struct.""" |
| 182 | return f"bOverride_{prop_name}" |
| 183 | |
| 184 | |
| 185 | # --------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected