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 sbarata00 · Jun 29, 2014 at 01:40 AM · javascripterror

'position' is not a member of 'object'

Hi I'm creating a game and I don't know how to fix this error:

BCE0019: 'position' is not a member of 'Object'.

 transform.InverseTransformPoint(Vector3(path1[currentPathObj].position.x,transform.position.y,path1[currentPathObj].position.z));

Please help me! :)

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 Eric5h5 · Jun 29, 2014 at 02:19 AM 0
Share

Presumably you are using the Array class. Never do that; it's slow and untyped. Use built-in arrays or generic Lists ins$$anonymous$$d.

avatar image sbarata00 · Jun 29, 2014 at 05:01 PM 0
Share

I'm 14 years old, I only work with the videos that I see on YouTube.

avatar image tanoshimi · Jun 29, 2014 at 05:06 PM 0
Share

Please show the code where you declare and initialise path1 - the way your code is currently written, it needs to be an array of transforms.

avatar image sbarata00 · Jun 29, 2014 at 05:14 PM 0
Share
 var path1 : Array;
avatar image tanoshimi · Jun 29, 2014 at 05:25 PM 0
Share

Yeah, try making that var path1 : Transform[]

Show more comments

2 Replies

· Add your reply
  • Sort: 
avatar image
1

Answer by robertbu · Jun 29, 2014 at 01:42 AM

'position' is a member of a transform, not a member of a Vector3. Assuming that path1 is an array of Vector3s, then just remove 'position'.

 transform.InverseTransformPoint(Vector3(path1[currentPathObj].x,transform.position.y,path1[currentPathObj].position.z));


Note your code would also work if path1 is an array of Transforms.

Comment
Add comment · Show 2 · 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 sbarata00 · Jun 29, 2014 at 04:59 PM 0
Share

I tried that, but it say's that x is not a member of object

avatar image robertbu · Jul 01, 2014 at 09:25 PM 0
Share

We need to see more of your code to understand what is the right solution. $$anonymous$$y guess is that you used the Array class to store your data. That class is slow, untyped and is not recommended. If that is the problem, use either the built-in array class or the .NET List class.

avatar image
0

Answer by Bolbo13 · Jun 29, 2014 at 02:06 AM

If paths are game objects you need to access transform first :

 path1[currentPathObj].transform.position.x


Comment
Add comment · Show 1 · 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 sbarata00 · Jun 29, 2014 at 04:59 PM 0
Share

I tried, but it say's that: 'transform' is not a member of 'Object'

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Exception error 1 Answer

Is not a Member of Collisions 2 Answers

My Javascript is not opening 0 Answers

The name 'Message' does not denote a valid type ('not found'). 1 Answer

Raycast error 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