Black Lives Matter

feature-multiSDF
Andrew Cassidy 4 years ago
parent 5ddf973a76
commit c72e20bd2a

@ -57,9 +57,9 @@
<Compile Include="MaterialModifiers\MaterialTextureProperty.cs" /> <Compile Include="MaterialModifiers\MaterialTextureProperty.cs" />
<Compile Include="ProjectionTarget.cs" /> <Compile Include="ProjectionTarget.cs" />
<Compile Include="ModuleConformalDecal.cs" /> <Compile Include="ModuleConformalDecal.cs" />
<Compile Include="Logging.cs" />
<Compile Include="OrientedBounds.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Util\Logging.cs" />
<Compile Include="Util\OrientedBounds.cs" />
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup> <PropertyGroup>

@ -1,6 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using ConformalDecals.MaterialModifiers; using ConformalDecals.MaterialModifiers;
using ConformalDecals.Util;
using UnityEngine; using UnityEngine;
namespace ConformalDecals { namespace ConformalDecals {

@ -1,5 +1,6 @@
using System; using System;
using ConformalDecals.MaterialModifiers; using ConformalDecals.MaterialModifiers;
using ConformalDecals.Util;
using UnityEngine; using UnityEngine;
using UnityEngine.Rendering; using UnityEngine.Rendering;

@ -1,7 +1,7 @@
using System; using System;
using UnityEngine; using UnityEngine;
namespace ConformalDecals { namespace ConformalDecals.Util {
public static class Logging { public static class Logging {
public static void Log(this PartModule module, string message) => Debug.Log(FormatMessage(module, message)); public static void Log(this PartModule module, string message) => Debug.Log(FormatMessage(module, message));

@ -1,6 +1,6 @@
using UnityEngine; using UnityEngine;
namespace ConformalDecals { namespace ConformalDecals.Util {
public struct OrientedBounds { public struct OrientedBounds {
private Bounds _localBounds; private Bounds _localBounds;
Loading…
Cancel
Save