Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
update
  • Loading branch information
Grille committed May 13, 2024
1 parent 85ececc commit 1e8e162
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Grille.BeamNG.Lib/Grille.BeamNG.Lib.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFrameworks>net6;net8</TargetFrameworks>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<PackageId>Grille.BeamNG.Lib</PackageId>
Expand All @@ -13,18 +13,18 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>Grille.BeamNG.png</PackageIcon>
<Version>0.1</Version>
<Version>0.1.1</Version>
<Authors>Grille</Authors>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<RootNamespace>Grille.BeamNG</RootNamespace>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand All @@ -34,7 +34,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Grille.IO.BinaryView" Version="3.0.0" />
<PackageReference Include="Grille.IO.BinaryView" Version="3.0.0" />
</ItemGroup>

</Project>
23 changes: 22 additions & 1 deletion Grille.BeamNG.Lib/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
# BeamNG.Lib


Library derived of my BeamNG BeamNG_LevelTemplateCreator project.

Its currently focusing on level data and is generally very WIP.
If you find a piece of code useful but don’t want to include the whole library, feel free to copy paste.
Credits to this project are appreciated but not necessary.


## Links
- [\[GitHub\] https://github.com/Grille/BeamNG_LevelTemplateCreator/tree/main/Grille.BeamNG.Lib](https://github.com/Grille/BeamNG_LevelTemplateCreator/tree/main/Grille.BeamNG.Lib)
- [\[NuGet\] https://www.nuget.org/packages/Grille.BeamNG.Lib](https://www.nuget.org/packages/Grille.BeamNG.Lib)
- [\[BeamNG Forum\] https://www.beamng.com/threads/beamng_leveltemplatecreator-pbr-v0-2.98334/](https://www.beamng.com/threads/beamng_leveltemplatecreator-pbr-v0-2.98334/)


## Features

- Read/Write BeamNG terrain binary files (testet againt file version 9 used by 0.32)
- Parsing/Writing of BeamNG scene-tree json


## Disclaimer
This library is an independent project and is not affiliated with, endorsed by, or in any way officially connected to BeamNG GmbH. All trademarks, service marks, product names, and logos appearing in this library are the property of their respective owners.

0 comments on commit 1e8e162

Please sign in to comment.