You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 17, 2026. It is now read-only.
CanModifyResult may provide a reason why an entry can not be edited at the moment. The reason is supposed to be displayed in the tooltip when hovering said entry.
However, sometimes the tooltip omits the reason as if the string didn't fit:
publicstaticCanModifyResultCanModifyWeightsNow(){varstartOfRound=StartOfRound.Instance;if(!startOfRound){returnCanModifyResult.True();// Main menu}if(!startOfRound.IsHost){returnCanModifyResult.False("Only for host");}if(!startOfRound.inShipPhase){returnCanModifyResult.False("Only in orbit");}returnCanModifyResult.True();}
As short as these strings are, "Only for host" can be displayed, but "Only in orbit" is missing.
While not a host:
While host but not in orbit:
However, lowercase letters are fine:
So maybe the popup is just a few pixels short to fit uppercase text? I am not experienced with Unity at all to fix it myself, unfortunately.
CanModifyResult may provide a reason why an entry can not be edited at the moment. The reason is supposed to be displayed in the tooltip when hovering said entry.
However, sometimes the tooltip omits the reason as if the string didn't fit:
As short as these strings are, "Only for host" can be displayed, but "Only in orbit" is missing.
While not a host:
While host but not in orbit:

However, lowercase letters are fine:

So maybe the popup is just a few pixels short to fit uppercase text? I am not experienced with Unity at all to fix it myself, unfortunately.