We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e57701b commit 3b49d54Copy full SHA for 3b49d54
Assets/CoreLibPackage/CoreLib.Equipment/Scripts/Patches/Emote_Patch.cs
@@ -31,12 +31,12 @@ public static void OnOccupied(Emote __instance)
31
private static void ApplyEmote(Emote __instance)
32
{
33
__instance.text.localize = true;
34
- __instance.textOutline.localize = true;
+ // __instance.textOutline.localize = true;
35
36
string textToPrint = __instance.GetValue<string>("textToPrint");
37
__instance.text.Render(textToPrint, true);
38
- __instance.textOutline.Render(textToPrint, true);
39
- __instance.textOutline.SetTempColor(Color.black);
+ // __instance.textOutline.Render(textToPrint, true);
+ // __instance.textOutline.SetTempColor(Color.black);
40
}
41
42
0 commit comments