Difference between revisions of "Materials"

From __space Wiki
Jump to: navigation, search
m
m
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
[http://space.apps.uri.edu/wiki/index.php?title=Learn_Unity_First '''Main guide page''']
 +
 
If you haven't already, please read the [http://space.apps.uri.edu/wiki/index.php?title=Getting_Started_-_No_Scripting previous part] of this Unity tutorial.
 
If you haven't already, please read the [http://space.apps.uri.edu/wiki/index.php?title=Getting_Started_-_No_Scripting previous part] of this Unity tutorial.
  
 
This is where you're gonna learn how to apply textures to things!
 
This is where you're gonna learn how to apply textures to things!
  
Say you found this great grass texture [[File:grass.jpg|100px]] online somewhere and now you want to use it your game for some reason.  You can either drag it into the Project tab from your file manager or downloads or wherever, or you can save it directly to your Unity assets folder (located wherever you told Unity to make your project, and it's the folder called Assets) which is arguably much faster.  Once you have the texture, you can't just directly apply it to an object.  First you must make a material.  Right-click within the Project view to start. Go to Create and there you should find and click Material.
+
Say you found this great grass texture [[File:grass.jpg|100px]] online somewhere and now you want to use it your game.  You can either drag it into the Project tab from your file manager, or you can save it directly to your Unity assets folder (located wherever you told Unity to make your project, and then it's the folder called Assets) which is arguably much faster.  Now to get that texture on an object you have to create a material.  Right-click within the Project view to start. Go to Create and there you should find and click Material.
  
 
[[File:createMaterial.png|450px]]
 
[[File:createMaterial.png|450px]]
Line 17: Line 19:
 
[https://docs.unity3d.com/Manual/Materials.html More detailed guide to materials in Unity] if you want to know more.
 
[https://docs.unity3d.com/Manual/Materials.html More detailed guide to materials in Unity] if you want to know more.
  
(Next part doesn't exist yet, but will be linked here)
+
[http://space.apps.uri.edu/wiki/index.php?title=Terrain '''Move onto building terrain.''']

Latest revision as of 16:16, 1 June 2017

Main guide page

If you haven't already, please read the previous part of this Unity tutorial.

This is where you're gonna learn how to apply textures to things!

Say you found this great grass texture Grass.jpg online somewhere and now you want to use it your game. You can either drag it into the Project tab from your file manager, or you can save it directly to your Unity assets folder (located wherever you told Unity to make your project, and then it's the folder called Assets) which is arguably much faster. Now to get that texture on an object you have to create a material. Right-click within the Project view to start. Go to Create and there you should find and click Material.

CreateMaterial.png

Once the new material is made, drag your chosen texture to where it says Main Maps > Albedo. You can also press the little circle with a dot in the middle to see all the textures you have access to in your assets (most of which will probably be from Unity's standard assets).

NewMaterial.png

You can then drag that material onto an object in the scene tab, or its name in the Hierarchy, to have it take on that material.

GrassBall.png

More detailed guide to materials in Unity if you want to know more.

Move onto building terrain.