Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ProjectObsidian/Components/Tools/MeshEditTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ public class MeshEditTool : Tool
protected readonly DestroyRelayRef<EditableMesh> _currentEditableMesh;
protected readonly SyncRef<TextRenderer> _label;

public override bool UsesLaser => true;

protected override void OnAttach()
{
base.OnAttach();
Expand All @@ -38,7 +40,7 @@ protected override void OnAttach()
coneMesh.Height.Value = 0.05f;

Slot labelPivot = Slot.AddSlot("Label Pivot");
labelPivot.LocalRotation = floatQ.Euler(0f, 0f, 90f);
labelPivot.LocalRotation = floatQ.Euler(0f, 0f, 45f);

Slot slot2 = labelPivot.AddSlot("Label");
TextRenderer label = slot2.AttachComponent<TextRenderer>();
Expand Down