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 thespragg · Aug 21, 2018 at 09:59 AM · texturesetpixel

Why are these two textures always the same?

So I'm trying to make it so that at any one time I have two textures, one that is generated on the previous trigger, and one that is generated on the current trigger. The code for this (stripping out useless parts)

 planetTextureTemp = planetTextureTemp2;
                 planet.GetComponentInChildren<Renderer>().material.mainTexture = planetTextureTemp;
 
                 Debug.Log(planetTextureTemp == planetTextureTemp2);
                 PlanetPicker(false);
                 Debug.Log(planetTextureTemp == planetTextureTemp2);

And the planet picker code, I've stripped out everything not pertaining to this problem.:

  switch (planetColour)
             {
                 case 0: //Earth Like Planet
                     planetTextureTemp2.SetPixel(2, 0, StringToColour(greens[Random.Range(0, greens.Length - 1)])); //Normal Land
                     planetTextureTemp2.SetPixel(0, 0, StringToColour(blues[Random.Range(0, blues.Length - 1)])); //Water
                     planetTextureTemp2.SetPixel(0, 1, StringToColour(browns[Random.Range(0, browns.Length - 1)])); //Light Land (Mountain Edge)
                     planetTextureTemp2.SetPixel(2, 1, StringToColour(browns[Random.Range(0, browns.Length - 1)])); //Inner Crater
                     planetTextureTemp2.SetPixel(1, 0, StringToColour(greens[Random.Range(0, greens.Length - 1)])); //Beach
                     planetTextureTemp2.SetPixel(1, 1, StringToColour(greens[Random.Range(0, greens.Length - 1)])); //Outer Crater
                     planetTextureTemp2.Apply();
                     //planet.GetComponentInChildren<Renderer>().material.mainTexture = planetTextureTemp;
                     break;

So my issue is that texture 2 always equals texture 1. Both of those debug logs will evaluate true despite the fact that it sets 1 = 2, then generates a new second one.

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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by coinnip_unity · Aug 22, 2018 at 04:32 AM

As I know, your textures is Texture2D , and when you write script like below,

Tx_A = Tx_B (both Texture2D)

this code do not copy Tx_B to Tx_A (which mean not allocating for Tx_A ).

Tx_A and Tx_B just has same reference.

So, in "Debug.Log(planetTextureTemp == planetTextureTemp2);", as the two Texture2D has same reference, it prints only "true".

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

115 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 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 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 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 avatar image avatar image avatar image

Related Questions

For different texture sizes, which is faster? SetPixel or SetPixels? 2 Answers

Why does setPixel persist after exit ?? 2 Answers

GetPixel Returning Inaccurate Color 1 Answer

Assigning UV Map to model at runtime 0 Answers

setPixel not working with custom Colors 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