We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1967ae1 commit 54ba463Copy full SHA for 54ba463
Assets/CustomTextureRenderer.Samples/Sample.unity
Assets/CustomTextureRenderer.Samples/Sample.unity.meta
Assets/CustomTextureRenderer.Samples/Test.cs
@@ -15,6 +15,8 @@ enum TextureSize
15
_256x256,
16
_512x512,
17
_1024x1024,
18
+ _2048x2048,
19
+ _4096x4096,
20
}
21
22
[SerializeField] TextureSize _textureSize;
@@ -35,6 +37,8 @@ void Start()
35
37
TextureSize._256x256 => 256,
36
38
TextureSize._512x512 => 512,
39
TextureSize._1024x1024 => 1024,
40
+ TextureSize._2048x2048 => 2048,
41
+ TextureSize._4096x4096 => 4096,
42
_ => 64,
43
};
44
0 commit comments