Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 thenachotech1113 · Jan 15, 2015 at 05:07 PM · texturenoiseperlin

creating a perlin noise generates all pixels the with the same shade of gray

hello everyone, i am trying to create a bump map for a terrain using perlin noise. first time i use it and firt time i create a texture in script. if someone could pls check and see where did i go wrong i would much apreciate it. here is the script:

 using UnityEngine;
 using System.Collections;
 
 public class Perlin_Noise_Texture : MonoBehaviour 
 {
 
     public Texture2D pNoise;
 
     public int width;
     public int height;
 
     public Color[] pixlColor;
     void Start () 
     {
         pixlColor = new Color[width * height];
 
         pNoise = new Texture2D(width, height, TextureFormat.ARGB32, false);
 
         for (int y = 0; y < height; y++)
         {
             for (int x = 0; x < width; x++)
             {
                 int currPixl = width * y + x;
 
                 float currPNC = Mathf.PerlinNoise(x, y);
                 pixlColor[currPixl] = new Color(currPNC, currPNC, currPNC, 1);
 
                 pNoise.SetPixel(x, y, pixlColor[currPixl]);
             }
         }
         pNoise.Apply();
     }
     
     void Update ()
     {
         
     }
 }

its probably something realy stupid but its driving me crazy. thanks again for your time.

Comment
Add comment · Show 2
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
avatar image perchik · Jan 15, 2015 at 05:15 PM 1
Share

I'd check out http://docs.unity3d.com/ScriptReference/$$anonymous$$athf.PerlinNoise.html

The textureFormat could be a problem too.

avatar image thenachotech1113 · Jan 15, 2015 at 05:50 PM 0
Share

thanks, though im still getting the same results. thanks a lot.

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Paulius-Liekis · Jan 15, 2015 at 06:29 PM

You passing int values to Mathf.PerlinNoise(x, y). It takes float (from 0 to 10). You should do something like this:

 Mathf.PerlinNoise((float)x/width*10, (float)y/height*10)
Comment
Add comment · Show 2 · Share
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
avatar image thenachotech1113 · Jan 15, 2015 at 07:09 PM 0
Share

oh, thanks a lot. it is still giving me the exact same value regardless of the vector 2 i input. I was wondering: does $$anonymous$$athf.PerlinNoise use directX? because if so i think that might be the problem, or a problem.

avatar image Paulius-Liekis · Jan 15, 2015 at 07:47 PM 0
Share

No, I don't think it uses DirectX. I edited my answer. You code works fine for me (with my change), I tested it. It even works without "*10" part (you just get less "waves"). Are you sure you didn't mess up something? What is the size of texture that you're generating?

avatar image
0

Answer by Bene_Dev · Jun 12, 2018 at 12:14 PM

I was just trying to create a texture2D for a different purpose, as i stumbled upon your question. I based my solution on your code and I got the error removed, as I was changing the pixlColor to be a temporary variable. This is my code:

  [SerializeField] GameObject imageObject;
         RawImage image;
     
         Texture2D mapFogTexture;
     
         int textureWidth;
         int textureHeight;
     
         private void Awake()
         {
             image = imageObject.GetComponent<RawImage>();
             textureWidth = (int)imageObject.GetComponent<RectTransform>().rect.width;
             textureHeight = (int)imageObject.GetComponent<RectTransform>().rect.height;
             mapFogTexture = new Texture2D(textureWidth, textureHeight);
             for (int x = 0; x < textureWidth; x++)
             {
                 for (int y = 0; y < textureHeight; y++)
                 {
                     int currPixl = textureWidth * y + x;
                     float currPNC = Mathf.PerlinNoise((float)x / textureWidth * 10, (float)y / textureHeight * 10);
     
                     Color tempColor = new Color(currPNC, currPNC, currPNC, 1);
     
                     mapFogTexture.SetPixel(x, y, tempColor);
     
                 }
             }
             mapFogTexture.Apply();
             image.texture = mapFogTexture;
         }

I hope this helps you or people watching this question later.

Comment
Add comment · Share
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

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

28 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Why does Perlin-generated Texture lose gradient when with colour? 1 Answer

Applying noise to a texture 1 Answer

Using noise as texture 2 Answers

Creating Perlin Noise 2 Answers

Using SetPixel in Update() 1 Answer


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