mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
remove resolution until the seam thing is fixed lol
This commit is contained in:
parent
7e782f58ed
commit
8d603da9cb
@ -33,6 +33,7 @@ namespace NewHorizons.External.Modules
|
||||
/// </summary>
|
||||
public string textureMap;
|
||||
|
||||
/*
|
||||
/// <summary>
|
||||
/// Resolution of the heightmap.
|
||||
/// Higher values means more detail but also more memory/cpu/gpu usage.
|
||||
@ -41,5 +42,6 @@ namespace NewHorizons.External.Modules
|
||||
[Range(1 * 4, 500 * 4)]
|
||||
[DefaultValue(51 * 4)]
|
||||
public int resolution = 51 * 4;
|
||||
*/
|
||||
}
|
||||
}
|
||||
@ -466,10 +466,13 @@ namespace NewHorizons.Handlers
|
||||
|
||||
if (body.Config.HeightMap != null)
|
||||
{
|
||||
/*
|
||||
// resolution = tris on edge per face
|
||||
// divide by 4 to account for all the way around the equator
|
||||
var res = body.Config.HeightMap.resolution / 4;
|
||||
HeightMapBuilder.Make(go, sector, body.Config.HeightMap, body.Mod, res);
|
||||
*/
|
||||
HeightMapBuilder.Make(go, sector, body.Config.HeightMap, body.Mod, 51);
|
||||
}
|
||||
|
||||
if (body.Config.ProcGen != null)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user