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 tom1103 · Jun 26, 2012 at 09:27 AM · movement2d-gameplay

Need air control for 2D-Game

Hi, I make a 2D Game for my friend but no I have a problem that I don;t know! I don't really know about walk scripts and I wanne make a script so you can control the character in the air but i don't know how to make it can you help me? ( The CharacterController script is from Unity3d self)

here's the script:

 var moveSpeed = 5.0;
 var jumpSpeed = 8.0;
 var gravity = 20.0;
 private var moveDirection = Vector3.zero;
 
 function FixedUpdate () {
     var controller : CharacterController = GetComponent(CharacterController);
     if (controller.isGrounded) {
     
     moveDirection = Vector3(0, 0, Input.GetAxis("Horizontal"));
     moveDirection = transform.TransformDirection(moveDirection);
     moveDirection *= moveSpeed;
     
     if (Input.GetButton ("Jump")) {
     moveDirection.y = jumpSpeed;
     }
     }
     
     
     moveDirection.y -= gravity * Time.deltaTime;
 
     
     controller.Move(moveDirection * Time.deltaTime);
 }
 
 @script RequireComponent(CharacterController)
Comment
Add comment · Show 7
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 AlucardJay · Jun 26, 2012 at 09:41 AM 0
Share

how much program$$anonymous$$g experience do you have? Are you trying to edit a charactercontroller you wrote, or just starting out in Unity?

There are many considerations, but before you write a player script you need to decide what behaviour the player's character has. Is this a man on the ground game with a special ability, or a superman game?

avatar image syclamoth · Jun 26, 2012 at 09:41 AM 0
Share

Remove the 'if(controller.isGrounded)' bit. Obviously.

avatar image tom1103 · Jun 26, 2012 at 01:05 PM 0
Share

The CharacterController is from Unity3d self.

avatar image AlucardJay · Jun 26, 2012 at 01:51 PM 0
Share

@tom1103 please put comments HERE [add new comment]

really need to know about the project and what you're trying to do. "control the character in the air" is pretty vague. is the character an aircraft, a biped? Like I asked before, is this a biped that needs to be grounded and jump normally but then can also fly (unlimited by gravity). Like, what is going on? What is the character, what is it's list of behaviours?

avatar image Mizuho · Jun 27, 2012 at 08:45 AM 0
Share

I would assume @syclamoth got this one right.

Show more comments

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

7 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

OnCollisionEnter2D not triggering on parent 1 Answer

Detecting what object is colliding with another in 2D Making a grid based game, and need to know which tile the player is standing on 3 Answers

Move sprite from point A to point B 0 Answers

Moving with coroutines 2 Answers

Creating a 2D Movement Grid 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