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 dodongoo · Apr 27, 2014 at 01:23 PM · transformfunctioncomponentstatic

"transform" in a static function

Hi, I created a script with a function spawning random objects and I'm trying to make the function static. The problem is I'm getting error for "transform":

An instance of type 'UnityEngine.Component' is required to access non static member 'transform'.

It's the same error for lines 29, 33, 36 and 39. I'm new to scripting and to Unity, so I've never used static functions and I don't know what to do. Here's the whole script:

     static var sObstacle : GameObject;
     static var mObstacle : GameObject;
     static var bObstacle : GameObject;
     
     private static var spawnCount : float;
     static var maxSpawnCount : float;
     
     private static var randomPos : Vector2;
     private static var obstacles : String[] = ["sObstacle", "mObstacle", "bObstacle"];
     private static var obstaclesCount : int = obstacles.length;
     private static var randomObstacle : int;
     private static var obstacle : String;
     
     static var ready : boolean;
 
 function Update() {
 
 }
 
 static function Spawn() {
 
     if(spawnCount < maxSpawnCount) {
     
         ready = false;
         spawnCount += 1;
         
         randomPos = new Vector2(Random.Range(-1F, 1F), Random.Range(-1F, 1F));
         randomPos = transform.TransformPoint(randomPos * .5F);
         randomObstacle = Random.Range(0, obstaclesCount);
         obstacle = obstacles[randomObstacle];
         if(obstacle == "sObstacle") {
             Instantiate(sObstacle, randomPos, transform.rotation);
         }
         else if(obstacle == "mObstacle") {
             Instantiate(mObstacle, randomPos, transform.rotation);
         }
         else if(obstacle == "bObstacle") {
             Instantiate(bObstacle, randomPos, transform.rotation);
         }
         
     }
     else {
     
         ready = true;
         
     }
 
 }
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 Owen-Reynolds · Apr 27, 2014 at 04:28 PM 0
Share

In the Instantiate, transform.rotation says the new object should copy the rotation of whatever gameObject the script is on. A lot of spawn scripts that use transform.position/rotation are meant to go on empties. That way you can move/spin the empties to set the spawn points.

Static means (in Unity) that you never count as being on any gameObject. So, in order to even start making it a static, you have to figure out what rotation you want to new thing to have. To just get it to work at all, you could put Quaternion.identity.

avatar image dodongoo · Apr 27, 2014 at 05:42 PM 0
Share

Okay, thanks to your and $$anonymous$$elly$$anonymous$$'s answers I understand it way better. Thank you.

1 Reply

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

Answer by KellyThomas · Apr 27, 2014 at 02:06 PM

transform is an instance member of your script (inherited from Component).

If you want to access a transform from another context (like a static method) then you are responsible for making one available. One way to achieve this is to pass it as a parameter.

Consider this example:

 static function Spawn(otherTransform: Transform) {
     if(spawnCount < maxSpawnCount) {
         ready = false;
         spawnCount += 1;
         randomPos = new Vector2(Random.Range(-1F, 1F), Random.Range(-1F, 1F));
         randomPos = otherTransform.TransformPoint(randomPos * .5F);
         randomObstacle = Random.Range(0, obstaclesCount);
         obstacle = obstacles[randomObstacle];
         if(obstacle == "sObstacle") {
             Instantiate(sObstacle, randomPos, otherTransform.rotation);
         }
         else if(obstacle == "mObstacle") {
             Instantiate(mObstacle, randomPos, otherTransform.rotation);
         }
         else if(obstacle == "bObstacle") {
             Instantiate(bObstacle, randomPos, otherTransform.rotation);
         }
     }
     else {
         ready = true;
     }
 }

 //...

 function Update() {
     Spawn(transform); // pass the Transform of the current GameObject
 }


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 dodongoo · Apr 27, 2014 at 05:44 PM 0
Share

Works, thanks!

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

22 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

Related Questions

Better way to call function from another script from editor script? 1 Answer

Access a function from one script in another? 3 Answers

rot not working for 2nd prefab 2 Answers

Setting Position of Spawned Prefab 2 Answers

function Start () problem!! 3 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