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 Bloodjoker666 · Feb 12, 2021 at 03:54 PM · transform.positioninstantiate prefab

[SOLVED ]Instantiate prefab position

Hello, I am stuck. My script was used to transport an item to the player holder location.

Since I made the player in Prefab as well as the said object, the object in question takes the starting position rather than the updated position of the player.

Can someone please help me?

     public GameObject player;
     GameObject holder;
     private bool isStick = false;
     Rigidbody2D rb;
     private bool isStoping = false;
     Vector2 holderPosition;
 
     void Start()
     {
         rb = GetComponent<Rigidbody2D>();
         holder = player.transform.Find("holder").gameObject;
 
     }
 
     private void Update()
     {
         holder = player.transform.Find("holder").gameObject;
         holderPosition = new Vector2(holder.transform.position.x, holder.transform.position.y);
     }
 
     private void FixedUpdate()
     {
         if (isStick == true && PlayerController.grabMode == true && PlayerController.carrying == 1)
         {
             transform.position = holderPosition;
             rb.velocity = new Vector3(0, 0, 0);
             rb.velocity = Vector2.zero;
             GetComponent<CapsuleCollider2D>().enabled = false;
             PlayerController.isCarrying = true;
         }
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

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by unity_ek98vnTRplGj8Q · Feb 12, 2021 at 04:18 PM

A public reference to your player prefab is useless here. Instead you should find your instantiated player object in your start method with something like GameObject.Find("Player") (or something more performant). There is no way to find the instance of your player object with a reference to its prefab.


If GameObject.Find is too inefficient for you, I can help brainstorm some more efficient ways to get the reference to your instantiated player object.

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 Bloodjoker666 · Feb 12, 2021 at 04:25 PM

Hi, @unity_ek98vnTRplGj8Q thank you!

The sentence: "There is no way to find the instance of your player object with a reference to its prefab" helped me a lot since i wasn't able to figure it out...

GameObject.Find("Player") just worked like a charm.

Your help is really appreciated, thanks again!

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 GDGames0302 · Feb 13, 2021 at 07:46 PM 0
Share

Hi. If you found the correct answer, don't delete this question, please mark it as Closed(from the edit button). Thank you.

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

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

Related Questions

Instantiated clone GameObject spawning at wrong position. 2 Answers

Platform cannot move up 2 Answers

Dynamic rigidbody changes his positions when I move its sprite (2D game) 0 Answers

Rigidbody2d.velocity making character stop in between 1 Answer

How to get position of instantiated object before it is destroyed 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