Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 potuk · Jul 01, 2015 at 10:25 AM · proceduralwaterwater4

Procedural water generation

I'm looking for suggestions on how to get started with procedurally generating water4. I've been unable to find any examples of this so far. Specifically, I'm aiming to have an airplane fly across open ocean and have water appear and disappear as needed so it looks like a continuous open ocean.

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 etopsirhc · Jul 01, 2015 at 11:58 AM

one way to do this would be to have a plane set at where the water level would be, but locked to the position of the airplanes x and z. then just animate the texture to scroll across the water plane at the rate and direction of the airplane.

i have a script that scrolls a texture on a RawImage UI canvas. it would take some editing, but you could use that as a base if you want to take that route.

 using UnityEngine;
 using System.Collections;
 using UnityEngine.UI;
 
 public class ImageSroller : MonoBehaviour {
     
     public bool lockEdges = true;
     public float rate = 1f;
     public KeyCode positve;
     public KeyCode negitive;
     Vector2 offset = new Vector2(0f,0f);
     public Vector2 direction = new Vector2(0f,0f);
     public RawImage picture;
     
     // Use this for initialization
     void Start () {
         
     }
     
     // Update is called once per frame
     void Update () {
         float dir = 0f;
         if (Input.GetKey(positve)){
             dir += rate;
         }
         if (Input.GetKey(negitive)){
             dir -= rate;
         }
         Rect r = picture.uvRect;
         offset.x = (offset.x+(direction.x*dir)*Time.deltaTime)%1;
         offset.y = (offset.y+(direction.y*dir)*Time.deltaTime)%1;
         if (lockEdges){
             if (offset.x >= 1-picture.uvRect.width){
                 offset.x = 1-picture.uvRect.width;
             }
             if (offset.y >= 1-picture.uvRect.height){
                 offset.y = 1-picture.uvRect.height;
             }
             if (offset.x <= 0){
                 offset.x = 0;
             }
             if (offset.y <= 0){
                 offset.y = 0;
             }
         }
         r.position = offset;
         picture.uvRect = r;
     }
 }
 
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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Water wave ripple effect for mobile - koi pond 2 Answers

Water problem in Unity 5: the water4 is broken? Can't delete reflection camera that does nothing. 2 Answers

how to stop Water4 from reflecting details? 0 Answers

Unity 5: Water4 4 Answers

water4 - Gerstner Displace Values Missing 0 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