Skip to content

Commit

Permalink
Fixed skybox asset path
Browse files Browse the repository at this point in the history
  • Loading branch information
Bendefy Zoltán committed Apr 15, 2022
1 parent 3246e72 commit 71e45fa
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
Binary file removed Assets/sss/negx.png
Binary file not shown.
Binary file removed Assets/sss/negy.png
Binary file not shown.
Binary file removed Assets/sss/negz.png
Binary file not shown.
Binary file removed Assets/sss/posx.png
Binary file not shown.
Binary file removed Assets/sss/posy.png
Binary file not shown.
Binary file removed Assets/sss/posz.png
Binary file not shown.
12 changes: 6 additions & 6 deletions Julia4DScenecs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ public static void SetupJuliaScene(Processor processor, int AS_Size, int resolut
processor.AddCommand(new CreateIncludableShaderCommand("noise", new AssetUri("asset:///Shaders/noise.shader")));

List<AssetUri> skyboxTexturelist = new List<AssetUri>();
skyboxTexturelist.Add(new AssetUri("asset:///Assets/Skybox/posx.png"));
skyboxTexturelist.Add(new AssetUri("asset:///Assets/Skybox/negx.png"));
skyboxTexturelist.Add(new AssetUri("asset:///Assets/Skybox/posy.png"));
skyboxTexturelist.Add(new AssetUri("asset:///Assets/Skybox/negy.png"));
skyboxTexturelist.Add(new AssetUri("asset:///Assets/Skybox/posz.png"));
skyboxTexturelist.Add(new AssetUri("asset:///Assets/Skybox/negz.png"));
skyboxTexturelist.Add(new AssetUri("asset:///Assets/skybox/posx.png"));
skyboxTexturelist.Add(new AssetUri("asset:///Assets/skybox/negx.png"));
skyboxTexturelist.Add(new AssetUri("asset:///Assets/skybox/posy.png"));
skyboxTexturelist.Add(new AssetUri("asset:///Assets/skybox/negy.png"));
skyboxTexturelist.Add(new AssetUri("asset:///Assets/skybox/posz.png"));
skyboxTexturelist.Add(new AssetUri("asset:///Assets/skybox/negz.png"));
processor.AddCommand(new LoadCubeTextureCommand("skybox_texture", skyboxTexturelist));

processor.AddCommand(new CreateBuffer("julia4DResult", (long)resolution * resolution * (resolution / 8)));
Expand Down

0 comments on commit 71e45fa

Please sign in to comment.