Revert "ShipCustomAttach: center the prompts, people are dumbasses"

This reverts commit 55521f4570.
This commit is contained in:
JohnCorby 2022-03-29 11:16:43 -07:00
parent cbc84950aa
commit f97c410cda

View File

@ -11,8 +11,8 @@ public class ShipCustomAttach : MonoBehaviour
private void Awake() private void Awake()
{ {
Locator.GetPromptManager().AddScreenPrompt(_attachPrompt, PromptPosition.Center); Locator.GetPromptManager().AddScreenPrompt(_attachPrompt, PromptPosition.UpperRight);
Locator.GetPromptManager().AddScreenPrompt(_detachPrompt, PromptPosition.Center); Locator.GetPromptManager().AddScreenPrompt(_detachPrompt, PromptPosition.UpperRight);
_playerAttachPoint = gameObject.AddComponent<PlayerAttachPoint>(); _playerAttachPoint = gameObject.AddComponent<PlayerAttachPoint>();
_playerAttachPoint._lockPlayerTurning = false; _playerAttachPoint._lockPlayerTurning = false;
@ -24,8 +24,8 @@ public class ShipCustomAttach : MonoBehaviour
{ {
if (Locator.GetPromptManager()) if (Locator.GetPromptManager())
{ {
Locator.GetPromptManager().RemoveScreenPrompt(_attachPrompt, PromptPosition.Center); Locator.GetPromptManager().RemoveScreenPrompt(_attachPrompt, PromptPosition.UpperRight);
Locator.GetPromptManager().RemoveScreenPrompt(_detachPrompt, PromptPosition.Center); Locator.GetPromptManager().RemoveScreenPrompt(_detachPrompt, PromptPosition.UpperRight);
} }
} }