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 TechedEd · Nov 02, 2012 at 01:01 PM · movementjump

Whats the script for basic Character movement?

I've had Unity for just over a month now, I pretty much know all about importing objects, the problems that have arose are the programming. If any of you would care to help me with the code for basic movements such as:

-Strafe Forward -Strafe Right -Strafe Left -Strafe Backwards -Jump

I'm not looking for complicated codes, All I really need is the script to for those basic movements.

(I tried looking up the codes, but when I attached the scripts to my object, it sayed that there were compiler errors with my script.)

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 Kiloblargh · Nov 02, 2012 at 03:02 PM 0
Share

You say all you really need is the script for those basic movements, but it's so not. You'll have to write a lot more scripts to complete any game, and even if you are starting with pre-written scripts you have understand what every word of them means if you want to connect them to anything else, or you'll keep getting compiler errors that you don't understand.

avatar image AlucardJay · Nov 03, 2012 at 12:18 AM 0
Share

http://wiki.unity3d.com/index.php/Scripts/Controllers

2 Replies

· Add your reply
  • Sort: 
avatar image
2

Answer by coastwise · Nov 02, 2012 at 02:44 PM

Have you tried the Character Controller included with Standart Assets? In Unity, click the Assets menu, Import Package > Character Controller.

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
avatar image
0

Answer by CraftWitMe · Dec 02, 2012 at 10:27 PM

var speed = 3.0;

var rotateSpeed = 3.0;

function Update ()

{ var controller : CharacterController = GetComponent(CharacterControll­er); //Rotate around y - axis transform.Rotate(0, Input.GetAxis ("Horizontal") rotateSpeed, 0); //Move forward / backward var forward = transform.TransformDirection(V­ector3.forward); var curSpeed = speed Input.GetAxis ("Vertical"); controller.SimpleMove(forward * curSpeed); }

@script RequireComponent(CharacterCont­roller)

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

14 People are following this question.

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

Related Questions

My movement function with jump won't work with collider function 1 Answer

Extend simple movement script (C#) 1 Answer

Different values of force applyed with AddForce don't change the speed of the gameobject 0 Answers

Character Movement and Jumping Script? 4 Answers

Movement script 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