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 RedHeart95 · Sep 11, 2017 at 03:53 PM · textureterrainterraindata

Terrain.SetAlphamaps Question

I am having trouble understanding the SetAlphamaps usage, I currently have a script that changes the texture of the terrain surrounding an object. see bellow;

 public Terrain myTerrain;
 private TerrainData myTerrainData;
 public GameObject test;
 public int ranage = 1;

 void Start ()
 {
     myTerrainData = myTerrain.terrainData;

     int mapx = (int)(((test.transform.position.x - myTerrain.transform.position.x) / myTerrainData.size.x) * myTerrainData.alphamapWidth);
     int mapz = (int)(((test.transform.position.z - myTerrain.transform.position.z) / myTerrainData.size.z) * myTerrainData.alphamapHeight);

     float[,,] map = new float[myTerrainData.alphamapWidth, myTerrainData.alphamapHeight, 3];

     for (int y = mapx - ranage; y < mapx + ranage; y++)
     {
         for (int x = mapz - ranage; x < mapz + ranage; x++)
         {
             map[x, y, 0] = 0;
             map[x, y, 1] = 1;
         }
     }
     myTerrainData.SetAlphamaps(0, 0, map);
 }

result: alt text

I would like this code to leave all the black zone as the default texture, even better would be to only change the yellow zone and not compute the rest of the terrain for efficiency sake. I have red the unit docs but its rather small and not understandable.

Any help or pointing in the right direction would be a massive help, thank you!

qq.jpg (71.4 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

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by RedHeart95 · Sep 11, 2017 at 10:42 PM

Huzza! After quite some time i have figured this terrain stuff out, here is the code for any one who wants it.

 public Terrain myTerrain;
 public GameObject test;
 private TerrainData myTerrainData;


 void Start()
 {
     myTerrainData = myTerrain.terrainData;

     int mapMaxX = 20;
     int mapMaxZ = 20;

     float[,,] map = new float[mapMaxX, mapMaxZ, 3];

     // For each point on the alphamap...
     for (var y = 0; y < mapMaxZ; y++)
     {
         for (var x = 0; x < mapMaxX; x++)
         {
             map[x, y, 1] = 0;
             map[x, y, 1] = 1;
         }
     }

     int mapX = (int)(((test.transform.position.x - myTerrain.transform.position.x) / myTerrainData.size.x) * myTerrainData.alphamapWidth);
     int mapY = (int)(((test.transform.position.z - myTerrain.transform.position.z) / myTerrainData.size.z) * myTerrainData.alphamapHeight);

     myTerrainData.SetAlphamaps(mapX, mapY, map);
 }

result:

alt text


result.jpg (73.6 kB)
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

98 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

Related Questions

How can I use SetAlphamaps and apply texture to the rail? 0 Answers

animating terrain texture question 1 Answer

Texturing terrain at runtime 1 Answer

How to change texture on parts of terrain 3 Answers

terrainData.SetHeightsDelayLOD seem to have no effect and i dont know why. 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