1
0
forked from cgvr/DeltaVR

fixing problems from merging

This commit is contained in:
2026-01-03 17:23:23 +02:00
parent bd913ae549
commit 5074d688f7
5 changed files with 122 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ public class ImageGenerationBox : MonoBehaviour
public Material inactiveMaterial;
public Material loadingMaterial;
public VoiceTranscriptionBox voiceTranscriptionTestBox;
public VoiceTranscriptionBox voiceTranscriptionBox;
public Image imageDisplay;
public Texture2D LastTexture { get; private set; }
public string promptSuffix = ", single object, front and side fully visible, realistic style, plain neutral background, clear details, soft studio lighting, true-to-scale";
@@ -37,7 +37,7 @@ void Start()
XROrigin playerOrigin = other.GetComponent<XROrigin>();
if (controller != null || playerOrigin != null)
{
string inputPrompt = voiceTranscriptionTestBox.GetTextOutput();
string inputPrompt = voiceTranscriptionBox.GetTextOutput();
string refinedPrompt = inputPrompt + promptSuffix;
isLoading = true;