Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Parallaxing in unity 3d

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 1.20k
    Comment on it

    For Parallaxing the background, we need to follow few steps:


    1. The type of image using for parallax must be of type texture 
    2. Set it's wrap mode to be repeated.
    3. Assign the image to a quad 
    4. set shader as Uint/Texture
    5. Assign the script BackgroundScroller.cs to quad

    1. using UnityEngine;
    2. using System.Collections;
    3.  
    4. public class BackGroundScroller : MonoBehaviour {
    5.  
    6. public static BackGroundScroller current;
    7. float pos;
    8. public float speed=0;
    9. // Use this for initialization
    10. void Start () {
    11. current = this;
    12. }
    13. // Update is called once per frame
    14. public void go (string dir) {
    15. pos += speed;
    16.  
    17. if (pos > 1f)
    18. pos -= 1f;
    19. if(dir == "Right")
    20. this.GetComponent<Renderer> ().material.mainTextureOffset = new Vector2 (pos, 0);
    21. else
    22. this.GetComponent<Renderer> ().material.mainTextureOffset = new Vector2 (-pos, 0);
    23.  
    24. }
    25.  
    26. }

    7.Create another script Movement.cs and assign it to the camera.

    1. using UnityEngine;
    2. using System.Collections;
    3.  
    4. public class Movement : MonoBehaviour {
    5. public float speed=2f;
    6. //public GameObject target;
    7.  
    8.  
    9. // Use this for initialization
    10. void Start () {
    11. }
    12.  
    13. // Update is called once per frame
    14. void Update () {
    15. float _horizontal=Input.GetAxis("Horizontal");
    16.  
    17. if (_horizontal < 0) {
    18. this.transform.Translate (Vector2.left * Time.deltaTime * speed);
    19. BackGroundScroller.current.go("Left");
    20.  
    21. } else if (_horizontal > 0) {
    22. this.transform.Translate (-Vector2.left * Time.deltaTime * speed);
    23. BackGroundScroller.current.go("Right");
    24. }
    25.  
    26.  
    27. }
    28.  
    29. }

    8.Made Quad as the child of Main Camera.


    Now As you go Right and Left via arrow keys you can see parallax being happening with the image.

     

    Note: For Reference Please finds the attach unity package with the blog.

     Thanks, Please leave the comments if you have any query.

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: