Skip to content

Commit

Permalink
dotnet-format
Browse files Browse the repository at this point in the history
  • Loading branch information
andybak committed Jan 5, 2024
1 parent b749f3e commit 8d7bc50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public SymmetryMode mode
[LuaDocsDescription("The transform of the symmetry widget")]
public TransformApiWrapper transform
{
get => new (TrTransform.TR(_Position, _Rotation));
get => new(TrTransform.TR(_Position, _Rotation));
set
{
_Position = value._TrTransform.translation;
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/GUI/ScriptParametersPopUpWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public override void SetPopupCommandParameters(int iCommandParam, int iCommandPa
var scriptName = LuaManager.Instance.GetActiveScriptName(m_ApiCategory);
var widgetConfigs = LuaManager.Instance.GetWidgetConfigs(scriptName);
m_Widgets.ForEach(w => w.gameObject.SetActive(false));
for (int i=0; i < widgetConfigs.Count; i++)
for (int i = 0; i < widgetConfigs.Count; i++)
{
var name = widgetConfigs.Keys.ElementAt(i);
var config = widgetConfigs[name];
Expand Down

0 comments on commit 8d7bc50

Please sign in to comment.