mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-24 04:58:59 -05:00
Feature/mipmapping (#454)
* Enable mipmapping for textures where it was previously disabled * Fix mipmapping for renderable projections
This commit is contained in:
@@ -56,7 +56,8 @@ local HydraText = {
|
||||
Size = 10.0^6.3,
|
||||
Origin = "Center",
|
||||
Billboard = true,
|
||||
Texture = textures .. "/Hydra-Text.png"
|
||||
Texture = textures .. "/Hydra-Text.png",
|
||||
BlendMode = "Additive"
|
||||
},
|
||||
GuiPath = "/Solar System/Dwarf Planets/Pluto"
|
||||
}
|
||||
|
||||
@@ -47,7 +47,8 @@ local NixText = {
|
||||
Size = 10^6.3,
|
||||
Origin = "Center",
|
||||
Billboard = true,
|
||||
Texture = textures .. "/Nix-Text.png"
|
||||
Texture = textures .. "/Nix-Text.png",
|
||||
BlendMode = "Additive"
|
||||
},
|
||||
GuiPath = "/Solar System/Dwarf Planets/Pluto"
|
||||
}
|
||||
|
||||
@@ -182,14 +182,15 @@ local Pluto = {
|
||||
}
|
||||
|
||||
local PlutoBarycenterLabel = {
|
||||
Name = "PlutoBarycenterLabel",
|
||||
Parent = transforms.PlutoBarycenter.Name,
|
||||
Renderable = {
|
||||
Type = "RenderablePlane",
|
||||
Billboard = true,
|
||||
Size = 5E4,
|
||||
Texture = encounterTextures .. "/barycenter.png"
|
||||
},
|
||||
Name = "PlutoBarycenterLabel",
|
||||
Parent = transforms.PlutoBarycenter.Name,
|
||||
Renderable = {
|
||||
Type = "RenderablePlane",
|
||||
Billboard = true,
|
||||
Size = 5E4,
|
||||
Texture = encounterTextures .. "/barycenter.png",
|
||||
BlendMode = "Additive"
|
||||
},
|
||||
GuiPath = "/Solar System/Dwarf Planets/Pluto"
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user