Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add strings for gaussian splatting #621

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions en.json
Original file line number Diff line number Diff line change
Expand Up @@ -989,6 +989,7 @@
"Importer.Model.3DScan": "3D Scan",
"Importer.Model.CAD": "CAD Model",
"Importer.Model.PointCloud": "Point Cloud",
"Importer.Model.GaussianSplat": "Gaussian Splat",
"Importer.Model.VertexColorModel": "Vertex Colored Model",
"Importer.Model.AdvancedSettings": "Advanced Settings",
"Importer.Model.ModelKindPrompt": "What kind of 3D model?",
Expand Down Expand Up @@ -1049,6 +1050,20 @@
"Importer.Model.Advanced.PositionAtOrigin": "Position At Origin",
"Importer.Model.Advanced.AssetsOnObject": "Place Assets On Object",

"Importer.Splat.Progress.Importing": "Importing Gaussian Splat",
"Importer.Splat.Progress.ReadingHeader": "Reading file header",
"Importer.Splat.Progress.ConvertingSplats": "Converted {converted} splats out of {total}",
"Importer.Splat.Progress.EncodingData": "Encoding converted data",

"GaussianSplat.Encoding.Title" : "Encoding Gaussian Splat",
"GaussianSplat.Encoding.Metadata" : "Encoding metadata",
"GaussianSplat.Encoding.EncodingPositions" : "Encoding positions {encoded} of {total}",
"GaussianSplat.Encoding.EncodingRotations" : "Encoding rotations {encoded} of {total}",
"GaussianSplat.Encoding.EncodingScales" : "Encoding scales {encoded} of {total}",
"GaussianSplat.Encoding.EncodingAlphas" : "Encoding alphas {encoded} of {total}",
"GaussianSplat.Encoding.EncodingColors" : "Encoding colors {encoded} of {total}",
"GaussianSplat.Encoding.EncodingFinalizing" : "Finalizing encode",

"Importer.Video.Title": "Import Video",
"Importer.Video.Prompt": "What are you importing?",
"Importer.Video.Regular": "Video",
Expand Down Expand Up @@ -1916,6 +1931,10 @@
"Settings.TextureQualitySettings.AnisotropicLevel.Description": "Controls the quality of the anisotropic filtering.",
"Settings.TextureQualitySettings.ReloadAllTextures": "Reload All Textures (can be heavy)",

"Settings.GaussianSplatQualitySettings": "Guassian Splat Rendering Quality",
"Settings.GaussianSplatQualitySettings.SortMegaOperationsPerCamera" : "Sorting Mega-operations per camera",
"Settings.GaussianSplatQualitySettings.SortMegaOperationsPerCamera.Description" : "When rendering Gaussian Splats, the splats must be sorted for each camera. Currently, this operation can be quite heavy, so it is spread over time to improve overall framerate.<br><br><color=hero.yellow>Increase</color> the value for sorting to happen faster. This will reduce artifacts when changing the view angle around Gaussian Splats rapidly.<br><br><color=hero.yellow>Decrease</color> the value to reduce the GPU usage if your GPU has trouble handling it. However this will increase artifacts when you rapidly change view angle.",

"Settings.ResolutionSettings": "Resolution",
"Settings.ResolutionSettings.Fullscreen": "Fullscreen",
"Settings.ResolutionSettings.Fullscreen.Description": "Toggles between fullscreen mode and windowed mode",
Expand Down
Loading