Skip to content

Commit

Permalink
fix a mistaken formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andybak committed Dec 10, 2024
1 parent 7ac28f7 commit c944cab
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Assets/Scripts/Model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ namespace TiltBrush

public class Model
{

public struct Location
{
public enum Type
Expand Down Expand Up @@ -250,13 +249,13 @@ public IExportableMaterial GetExportableMaterial(Material material)
return m_ImportMaterialCollector.GetExportableMaterial(material);
}

public Model(Location location) { m_Location = location; }

public Location GetLocation()
public Model(Location location)
{
return m_Location;
m_Location = location;
}

public Location GetLocation() { return m_Location; }

/// A helper class which allows import to run I/O on a background thread before producing Unity
/// GameObject(s). Usage:
/// BeginAsyncLoad()
Expand Down

0 comments on commit c944cab

Please sign in to comment.