• 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
Question by caxinaswin · Dec 05, 2016 at 07:29 AM · unity 5objectseffectssin

How to make a fluid carpet effect

Hi guys, i dont know very well how to explain this, but i basicly add a plane on my scene and put a texture of a carpet, i want that carpet to be like the Alladin carpet on the cartoon, i want the carpet to make a move like a wave in the same place, i dont know how to approach this, i searched a lot, the movement i want is in the same place like the (sin) in math, if you guys can help me i appreciate a lot.

Comment

People who like this

0 Show 1
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 Sergio7888 · Dec 05, 2016 at 07:06 PM 0
Share

You need create a plane with bones in Blender/Maya or any other modeling program, and create an animation moving the bones.

1 Reply

  • Sort: 
avatar image

Answer by AlucardJay · Dec 07, 2016 at 06:09 AM

For each vertex : use the vertex position as a reference in the wave, add a timer value, now evaluate sine value. Here is an example using sine and perlin (perlin looks more 'random', and can be evaluated with 2 variables). In a new scene, create a plane and attach the script. In play mode, modify the public inspector variables.

 using UnityEngine;
 using System.Collections;
 
 public class PerlinPlane : MonoBehaviour 
 {
     public float speed = 2f;
     public float scaleY = 1f;
     public float freqX = 0.2f;
     public float freqZ = 3.6f;
     
     private float timer = 0f;
     private Mesh mesh;
     private Vector3[] originalVerts;
     
     void Start()
     {
         mesh = GetComponent< MeshFilter >().mesh;
         originalVerts = new Vector3[ mesh.vertices.Length ];
         System.Array.Copy( mesh.vertices, originalVerts, mesh.vertices.Length );
     }
 
     void Update()
     {
         Vector3[] verts = new Vector3[ originalVerts.Length ];
         
         for ( int i = 0; i < originalVerts.Length; i++ ) 
         {
             verts[ i ] = new Vector3( originalVerts[i].x, 0, originalVerts[i].z );
             
             //verts[ i ].y = Mathf.Sin( originalVerts[i].x * freqX + timer ) * scaleY;
             verts[ i ].y = ( Mathf.PerlinNoise( originalVerts[i].x * freqX + timer, originalVerts[i].z * freqZ + timer ) * 2f - 1f ) * scaleY;
         }
         
         mesh.vertices = verts;
         mesh.RecalculateBounds();
         
         timer += speed * Time.deltaTime;
     }
 }

Comment
getyour411

People who like this

1 Show 0 · 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

Unity Answers is in Read-Only mode

Unity Answers content will be migrated to a new Community platform and we are aiming to launch a public beta by June 9. Please note, Unity Answers is now in read-only so we can prepare for the final data migration.

For more information and updates, please read our full announcement thread in the Unity Forum.

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

Hi I am trying to assign gameobject (prefab) from the List to another prefab gameobject but i think there is some mistake in one line of my code Please help. 1 Answer

Placing trees randomly across a large terrain 1 Answer

Customising Particle Effects for exploding rocks?? 1 Answer

How to separated Materials with an Object 1 Answer

How to Adjust Size of objects/Camera's size for different resolutions 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