Add custom TinyEmbree package with backface culling

This commit is contained in:
Jarrod Doyle 2025-01-26 17:22:02 +00:00
parent 8ae23eafb6
commit e64448f7e8
Signed by: Jayrude
GPG Key ID: 38B57B16E7C0ADF7
5 changed files with 30 additions and 1 deletions

View File

@ -16,7 +16,7 @@
<PackageReference Include="Serilog" Version="4.2.0" /> <PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" /> <PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" /> <PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="TinyEmbree" Version="1.1.0" /> <PackageReference Include="TinyEmbree" Version="1.1.0.1" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

5
NuGet.Config Normal file
View File

@ -0,0 +1,5 @@
<configuration>
<packageSources>
<add key="KeepersCompound.Lightmapper Local" value="./Packages" />
</packageSources>
</configuration>

View File

@ -0,0 +1,5 @@
{
"version": 2,
"contentHash": "Uhc3bpe44l6oPT7XPAWg8MBJRZc4iZP8nZpaAM3+35tvwLxjspcuBIMzFatr124Zfm71HQxDf+K1o5Tic/FQYw==",
"source": null
}

View File

@ -0,0 +1 @@
Uhc3bpe44l6oPT7XPAWg8MBJRZc4iZP8nZpaAM3+35tvwLxjspcuBIMzFatr124Zfm71HQxDf+K1o5Tic/FQYw==

18
Packages/tinyembree/1.1.0.1/tinyembree.nuspec vendored Executable file
View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>TinyEmbree</id>
<version>1.1.0.1</version>
<title>TinyEmbree</title>
<authors>Pascal Grittmann</authors>
<license type="file">LICENSE</license>
<licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl>
<description>A very simple C# wrapper around the Embree ray tracing kernels.</description>
<copyright>(c) Pascal Grittmann</copyright>
<tags>ray tracing Embree</tags>
<repository type="git" url="https://github.com/pgrit/TinyEmbree" commit="66e46513777d3046b684f4d6fe796e9f3558b6b0" />
<dependencies>
<group targetFramework="net9.0" />
</dependencies>
</metadata>
</package>