1
0
forked from cgvr/DeltaVR

computer printer Enter key is disabled before radio has been used

This commit is contained in:
2026-03-06 16:55:54 +02:00
parent 2188f16cff
commit ba4c7ed631
5 changed files with 9 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ public class ShapeDetectionNPC : NPCController
[Header("Shape Detection Minigame Config")]
public QuestMarker questMarker;
public RadioTransmitter radio;
public Transform computerKeyboardKey;
public PushableButton computerKeyboardKey;
public Printer3DInputHole printerInsertionHole;
public ComputerPrinter computerPrinter;
public ShapeScanner shapeScanner;
@@ -101,7 +101,8 @@ public class ShapeDetectionNPC : NPCController
{
SpeakVoiceLine(3, radio.gameObject, radioAmount);
state = 3;
questMarker.MoveTo(computerKeyboardKey);
questMarker.MoveTo(computerKeyboardKey.transform);
computerKeyboardKey.Deactivate();
}
}