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 doomprodigy · Feb 14, 2011 at 09:43 AM · distancevectorconverting

Script Conversion JS to C#

Hello there, Small question, I am currently working on converting a script and have come across my last error. Just need a hand on converting it as I am unsure on how to do so.

var direction = transform.TransformDirection(Vector3(1,0,0));

The script is fine itself, I just do not know what I have to put instead of var.

Peace,

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

3 Replies

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

Answer by Senhor de todo o Mal · Feb 14, 2011 at 09:58 AM

In C# you just need the type and any access modifiers to declare a variable.

So in your case:

Vector3 direction = transform.TransformDirection(Vector3(1,0,0));

or:

public Vector3 direction = transform.TransformDirection(Vector3(1,0,0));

Also, before posting this kind of question always check the docs: http://unity3d.com/support/documentation/ScriptReference/index.Writing_Scripts_in_Csharp.html

http://www.unifycommunity.com/wiki/index.php?title=Programming

http://msdn.microsoft.com/en-us/library/ms173118(VS.80).aspx

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
1

Answer by jashan · Feb 14, 2011 at 09:59 AM

What you need to find out here is what kind of objects Transform.TransformDirection returns, which is documented in the scripting reference: Transform.TransformDirection(direction: Vector3) : Vector3

So ... it returns a Vector3, so this would be:

Vector3 direction = transform.TransformDirection(new Vector3(1,0,0));

... this is one of the reasons why I'm not too happy about the widespread idea that JavaScript is "good for beginners": Especially as beginner I'd really like to know what all these methods return - but the JavaScript examples won't show me.

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
1

Answer by johan-skold · Feb 14, 2011 at 11:17 AM

Since Unity3 updated the Mono version you can actually use the var keyword in C# too, as long as it's a local variable and not a class-field. This tells the compiler "make this variable the same type as whatever is on the right side of the equals sign."

That said, that line would still give you an error in C#, simply cause you need to explicitly specify you want a new Vector3 to send as parameter to TransformDirection.

var direction = transform.TransformDirection(new Vector3(1,0,0));
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

No one has followed this question yet.

Related Questions

Create a vector between me and my enemy. 1 Answer

2d move to point script help 0 Answers

Why this script is not working? 1 Answer

Distance Variable Won't Change. What's Wrong With My Script? 1 Answer

Distance betwen two objects.Error,bug,etc. 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