Black Lives Matter

This commit is contained in:
Andrew Cassidy 2020-06-02 17:17:33 -07:00
parent 5268435693
commit d6f0a1f9a7
No known key found for this signature in database
GPG Key ID: 963017B38FD477A1
5 changed files with 6 additions and 4 deletions

View File

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

View File

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

View File

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

View File

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

View File

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