1
0
forked from cgvr/DeltaVR

quest marker hovers above specified target

This commit is contained in:
2026-02-13 17:40:37 +02:00
parent 1f632c60bc
commit 60951161ed
4 changed files with 23 additions and 7 deletions

View File

@@ -58,8 +58,8 @@ public class ShapeDetectionNPC : NPCController
{
state = 1;
await CallPlayer();
await Task.Delay(2500);
questMarker.MoveTo(radio.transform);
await Task.Delay(2000);
questMarker.MoveTo(radio.transform, true);
}
}
@@ -137,7 +137,7 @@ public class ShapeDetectionNPC : NPCController
{
SpeakVoiceLine(5, radio.gameObject, radioAmount);
state = 5;
questMarker.MoveTo(shapeScanner.transform);
questMarker.MoveTo(shapeScanner.transform, true);
}
string encodedTexture = Convert.ToBase64String(GeneratedTexture.EncodeToJPG());