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 samzen · Oct 20, 2011 at 10:05 AM · physicsterrainmaterialtexturesphysx

Adding physics to various terrain

Is there a way to add physics to various terrain so that (for example) when your character is wading in water his speed becomes 80% of normal speed. Or when your character is wading through forest, 85%. You get the picture.

To clarify, I'm looking for a way to dynamically add physics to terrain. I haven't been able to find anything on the subject. It might be that I dunno what to look for, but any help is appreciated.

Comment
Add comment · 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 syclamoth · Oct 20, 2011 at 08:59 AM 1
Share

These things you are talking about... aren't physics. There is no such thing as a 'slow field' (as you seem to be talking about), as such, only substances with more or less friction. I think you should think carefully about what you are trying to do here, and make sure there isn't a better way (like manually defining trigger volumes, which cause different behaviours on the player).

1 Reply

· Add your reply
  • Sort: 
avatar image
4
Best Answer

Answer by aldonaletto · Oct 20, 2011 at 10:45 AM

As @syclamoth said, that's not a physics stuff: this should be implemented in the movement script of your character. If you use a CharacterController (most usual approach) you can define triggers for different terrain regions. For water, for instance, you can "bury" a cube under the water plane and adjust its dimensions to cover the whole water portion. Set isTrigger in the collider, and tag it as "Water". In the character script, add OnTriggerEnter and OnTriggerExit events and change the character speed according to the terrain - for instance:

var normalSpeed: float = 6.0; var waterSpeed: float = 4.5; var forestSpeed: float = 5.0; var inWater: boolean = false; var inForest: boolean = false;

function Update(){ // get the movement direction (see CharacterController.Move example) // move the character according to controls and region var speed = normalSpeed; if (inWater){ speed = waterSpeed; } else if (inForest){ speed = forestSpeed; } character.Move(moveDirection speed Time.deltaTime); }

function OnTriggerEnter(other: Collider){ if (other.tag == "Water"){ inWater = true; } else if (other.tag == "Forest"){ inForest = true; } }

function OnTriggerExit(other: Collider){ if (other.tag == "Water"){ inWater = false; } else if (other.tag == "Forest"){ inForest = false; } }

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Why rotating the Terrain Collider does not work? 0 Answers

Modelling Terrain in Blender 1 Answer

Terrain having multiple textures 1 Answer

My object falls through terrain. 8 Answers

Terrain detail mesh material not working 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