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 camilopalacios · Dec 27, 2016 at 11:28 PM · backgroundoffsetscrolling

Why is my texture offset accelerating?

I'm trying to linearly increase and decrease the offset of a background texture based on the movement of my player character. It starts well but for some reason, the more the player moves, the faster the offset increases and decreases. At the end, the background is scrolling way too fast.

 public GameObject player;
 private Vector3 previousPosition;
 private Vector2 savedOffset;
 public float scrollSpeed = 0.001f;

 void Start()
 {
     previousPosition = player.transform.position;
     savedOffset = GetComponent<Renderer>().material.mainTextureOffset;
 }

 // Update is called once per frame
 void FixedUpdate()
 {
     float vertical = player.transform.position.y - previousPosition.y;
     float horizontal = player.transform.position.x - previousPosition.x;
     float y = Mathf.Repeat(Time.time * scrollSpeed * vertical, 1);
     float x = Mathf.Repeat(Time.time * scrollSpeed * horizontal, 1);

     Vector2 offset = new Vector2(Mathf.Repeat(savedOffset.x + x, 1), Mathf.Repeat(savedOffset.y + y, 1));
     GetComponent<Renderer>().material.mainTextureOffset = offset;
     savedOffset = offset;
     previousPosition = player.transform.position;

     Debug.Log("offset y: " + GetComponent<Renderer>().material.mainTextureOffset.y);
 }

The calculations of x and y are not the problem. I've tried setting offset:

 Vector2 offset = new Vector2(x, y);

Then, it increases and decreases linearly. The problem occurs when I add it to the previous offset, but those are just additions so I don't understand how can it accelerate the offset.

 Vector2 offset = new Vector2(Mathf.Repeat(savedOffset.x + x, 1), Mathf.Repeat(savedOffset.y + y, 1));

I'm adding a screenshot to put things in context. The idea is to scroll the background in the opposite direction to the player. Thank you all in advance.alt text

captura.png (316.9 kB)
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 AlwaysSunny · Dec 27, 2016 at 11:27 PM 1
Share

It shouldn't matter if the offset is greater than one or less than zero. The shader doesn't care. Just add to the current offset without the Repeat logic. This should bypass the problem altogether.

 Vector2 additiveOffset = new Vector2( horizontal, vertical );
 Vector2 offset = savedOffset + additiveOffset;
avatar image camilopalacios AlwaysSunny · Dec 28, 2016 at 05:30 PM 0
Share

You are absolutely right. That fixed the problem :) Thank you very much!

0 Replies

· Add your reply
  • Sort: 

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

2D Background Generator 1 Answer

Gap Between Scrolling Background Objects 0 Answers

Getting rid of Scrolling Uv Jitters 0 Answers

Vertical camera scrolling fix? 0 Answers

How do I make a 2D scrolling background with variable speed? 2 Answers


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