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 cheesemaster · Sep 06, 2012 at 06:45 AM · spacelocalworld

Defining a local spawn offset

   var x = transform.position.x + Random.Range(-10,10);
   var z = transform.position.z + Random.Range(-10,10);
   var posn = Vector3(x,transform.position.y,z);


How can I write this so that "posn" refers to the local x/z axis of the gameobject which is running the script, as opposed to x/z relative to world space?

I am basically trying to instantiate a series of objects at "posn" which should be a random X and Z offset relative to the game object rather than the world.

I've tried using TransformDirection but I don't seem to be able to incorporate it into this script without a load of errors, perhaps as I am already using a vector3 to define posn?

Comment
Add comment · Show 3
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 Fattie · Sep 06, 2012 at 08:13 AM 0
Share

so simple! it's just

transform.localPosition.x += whatever

check doco localPosition

avatar image cheesemaster · Sep 06, 2012 at 08:49 AM 0
Share

it compiles fine with transform.localPosition ins$$anonymous$$d of transform.position but it's not changing anything. All of my instantiated objects still appear to be on the world Z/X axis, irrespective of the dynamic rotation of the object that is running the script (in this case a trigger)

avatar image Fattie · Sep 06, 2012 at 08:59 AM 0
Share

i dopn't follow you, but learn about:

Debug.DrawLine

it's fantastic for debugging this sort of thing. You will have the problem fixed in far less time than typing a question here. Hope it helps!

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by lodendsg · Sep 06, 2012 at 09:17 AM

Not sure if I fallow correctly but if you wanted a vector local to the gameObject.transform it would be

`posn = posn - transform;` which in your code above would be the same as

 post = new Vector3(Random.Range(-10,10), 0, Random.Range(-10,10));
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 cheesemaster · Sep 06, 2012 at 10:40 AM 0
Share

to be honest when applied to my script that's just making all of my instantiated prefabs detatch completely from the parent trigger (they were previously spawning in it's centre) and now they are spawning at world coordinated 0.0.0 along world plane x/z

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

8 People are following this question.

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

Related Questions

Converting Raycasted Point to Local Space 2 Answers

Is there a local method for Rigidbody.constraints? 0 Answers

Apply a Rotation in World Space based on Quaternions 2 Answers

Can someone help me understand world/local space? 1 Answer

an ignorant's trigonometry woes: rotate a transform around an axis 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