Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Habowski · Oct 23, 2016 at 06:52 AM · scripting problemshaderarraygraphicstexture2d

Texture2D Array Appears Grainy

I have been trying to implement Texture2D arrays into a shader and while it can properly set the Texture2DArray the sampled result looks very grainy, see picture. This rock has the same exact texture on both sides (triplanar shader) but the left side albedo map comes from the Texture2DArray using UNITY_SAMPLE_TEX2DARRAY and the other side albedo map through the standard pipeline.

alt text

The right side of the rock where it looks properly smooth is sampled using this code in the shader, nothing special here:

 sampler2D    _MainTex;
 ...
 fixed4 rockAlbedo = tex2D(_MainTex, UV);

And the left side of the rock where it looks bad and grainy is sampled using this code in the shader:

 fixed4 rockAlbedoLeft = UNITY_SAMPLE_TEX2DARRAY(_MyTex, float3(UV.x, UV.y, 0));

Which is setup in the scripts like this:

 Texture2D tex = rockSurfaceTexture;
 Texture2DArray tempTexs = new Texture2DArray(tex.width, tex.height, 2, ((Texture2D)tex).format, false);
 tempTexs.SetPixels32(((Texture2D)tex).GetPixels32(), 0); 
     //Also tried   Graphics.CopyTexture(tex, 0, 0, tempTexs, 0, 0);
     
 tempTexs.filterMode = FilterMode.Bilinear;
 tempTexs.anisoLevel = 9;
 Texture2DArray.anisotropicFiltering = AnisotropicFiltering.ForceEnable;
 tempTexs.Apply();
     
 rockSideMaterial.SetTexture("_MyTex", tempTexs);

My texture settings are getting through to the shader, for example I can change the filter mode to point instead of bilinear and it behaves correctly. But nothing I've changed has had any impact on this graininess. I've also tried messing with every relevant texture importer setting in the advanced menu and nothing changes it. I've also played around with mip maps but they do not seem to be the cause.

Curiously, setting the textures to half or eight scale in the quality settings affects the regular texture but not the texture array.

So is this just an inherent limitation of Unity's implementation of texture arrays or can it be fixed somehow? Any help would be much appreciated!

rock1.png (311.2 kB)
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Shaders: How heavy is tex2D()? 1 Answer

Shader not changing according to scene light in real time. 1 Answer

How to use texture array in shader? 1 Answer

Scripts not updating the material's shader properties 1 Answer

How can I render depth into a cube render texture and sample it in another shader? 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges