Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Commit

Permalink
Namespace Fix
Browse files Browse the repository at this point in the history
Namespace Fix
  • Loading branch information
Xlinka committed Jun 22, 2023
1 parent a537e6c commit 4a42b86
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace FrooxEngine
{
[Category("Add-ons/Wizards")]
public class MapWizard : Component, IDeveloperInterface, IComponent, IComponentBase, IDestroyable, IWorker,
public class LightSourceWizard : Component, IDeveloperInterface, IComponent, IComponentBase, IDestroyable, IWorker,
IWorldElement, IUpdatable, IChangeable, IAudioUpdatable, IInitializable, ILinkable
{
public readonly SyncRef<Slot> Root;
Expand Down Expand Up @@ -39,7 +39,7 @@ protected override void OnAttach()
ProcessDisabled.Value = false;
ProcessColor.Value = false;

Slot.Name = "Map Wizard";
Slot.Name = "Light Source Wizard";
Slot.Tag = "Developer";
NeosCanvasPanel neosCanvasPanel = Slot.AttachComponent<NeosCanvasPanel>();
neosCanvasPanel.Panel.AddCloseButton();
Expand Down
2 changes: 1 addition & 1 deletion NEOSPlus/Logix/DynamicMesh/Bone/GetBone.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using FrooxEngine.LogiX;

// Rad was here
namespace FrooxEngine.Logix.Math
namespace FrooxEngine.LogiX.Math
{
[Category("LogiX/Mesh/Bone")]
public class GetBoneBinding : LogixOperator<BoneBinding>
Expand Down
2 changes: 1 addition & 1 deletion NEOSPlus/Logix/DynamicMesh/Triangle/GetTriangle.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using BaseX;
using FrooxEngine.LogiX;

namespace FrooxEngine.Logix.Math
namespace FrooxEngine.LogiX.Math
{
[Category(new string[] {"LogiX/Mesh/Triangle"})]
public class GetTriangle : LogixOperator<Triangle>
Expand Down
2 changes: 1 addition & 1 deletion NEOSPlus/Logix/DynamicMesh/Vertex/GetVertex.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using FrooxEngine.LogiX;

// Rad was here
namespace FrooxEngine.Logix.Math
namespace FrooxEngine.LogiX.Math
{
[Category("LogiX/Mesh/Vertex")]
public class GetVertex : LogixOperator<Vertex>
Expand Down
2 changes: 1 addition & 1 deletion NEOSPlus/Logix/DynamicMesh/Vertex/GetVertexPos.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using BaseX;
using FrooxEngine.LogiX;

namespace FrooxEngine.Logix.Math
namespace FrooxEngine.LogiX.Math
{
[Category("LogiX/Mesh/Vertex")]
public class GetVertexPos : LogixOperator<float3>
Expand Down
2 changes: 1 addition & 1 deletion NEOSPlus/Logix/Input Devices/ViveTrackerByBodyNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using FrooxEngine.LogiX;
using System.Linq;
using System.Collections.Generic;
using NEOSPlus.Logix.Input_Devices;
namespace FrooxEngine.Logix.Input_Devices

[Category("LogiX/Input Devices")]
public class ViveTrackerByBodyNode : TrackerBatteryBase
Expand Down
2 changes: 1 addition & 1 deletion NEOSPlus/Logix/Input Devices/ViveTrackerByIndex.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using FrooxEngine;
using FrooxEngine.LogiX;

namespace NEOSPlus.Logix.Input_Devices
namespace FrooxEngine.Logix.Input_Devices
{
[Category("LogiX/Input Devices")]
public class ViveTrackerByIndex : TrackerBatteryBase
Expand Down
2 changes: 1 addition & 1 deletion NEOSPlus/Logix/Input Devices/ViveTrackerCount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using FrooxEngine;
using FrooxEngine.LogiX;

namespace NEOSPlus.Logix.Input_Devices
namespace FrooxEngine.Logix.Input_Devices
{
[Category("LogiX/Input Devices")]
public class ViveTrackerCount : LogixNode
Expand Down
2 changes: 1 addition & 1 deletion NEOSPlus/Logix/Network/RSSFeed.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using BaseX;
using System.Xml;

namespace LogiX.Network
namespace FrooxEngine.LogiX.Network
{
[Category("LogiX/Network")]
[NodeName("RSS Feed")]
Expand Down

0 comments on commit 4a42b86

Please sign in to comment.