Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
This post has been wikified, any user with enough reputation can edit it.
avatar image
0
Question by haam · Jun 03, 2016 at 08:06 PM · unity 5

help with some code

using UnityEngine; using System.Collections;

public class Generate : MonoBehaviour {

 public GameObject lightnest;
 public float initialDelay;
 public float finalDelay;
 public float rampDuration;

 protected float _delay;
 protected float _runTime;
 protected float _timeSinceSpawn;
 // Use this for initialization
 void Start () {
     _delay = initialDelay;
     _runTime = _timeSinceSpawn = 0.0f;

 }

 // Update is called once per frame
 void Update() {

     _runTime += Time.deltaTime;
     _timeSinceSpawn += Time.deltaTime;
     _delay = Mathf.Lerp(initialDelay, finalDelay, _timeSinceSpawn / rampDuration);
     if (_timeSinceSpawn > _delay) Spawn();

 }
 protected void Spawn()
 {
     _timeSinceSpawn = 0.0f;
     Instantiate(lightnest);
 }


}

So this is the code which Im using to generate the pipe thingies, but after i generates it, I want to destroy it after its out of screen or any other possible way, maybe after 3 seconds or something and I want this pipe thingies to generate randomly in different sizes you get me ryt just like flappy bird.

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

1 Reply

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

Answer by TBruce · Jun 04, 2016 at 12:53 AM

Use the following script

 using UnityEngine;
 using System.Collections;
 
 public class DestroyPipeThingy : MonoBehaviour
 {
     // this function is used to dstroy the GameObject after a certain amount of time
     public void DestroyPipeThingyAfterDelay(float delay)
     {
         if (delay > 0)
         {
             StartCoroutine(DestroyPipeAfterDelay(delay));
         }
     }
 
     IEnumerator DestroyPipeAfterDelay(float delay)
     {
         yield return new WaitForSeconds(delay);
         Destroy(gameObject);
     }
 
     // this function will destroy the object when it goes off screen
     function OnBecameInvisible()
     {
         Destroy(gameObject);
     }
 }

Usage

 protected void Spawn()
 {
     _timeSinceSpawn = 0.0f;
     GameObject spawnedObject = Instantiate(lightnest);
     spawnedObject.AddComponent<DestroyPipeThingy>();
     
     // if you want to destroy the object after a certain amount of time uncomment the following
     // spawnedObject.DestroyPipeThingyAfterDelay((initialDelay);
 }
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 haam · Jun 04, 2016 at 06:53 AM 0
Share

but what about the size of the object like flappy bird i can do it within this script ryt if so how thanks in advance

avatar image TBruce haam · Jun 05, 2016 at 06:46 PM 0
Share

Flappy Bird is a 2D side scroller. It is also an endless game and screens are dynamic. The components will only be added to the pipes on the screen and ad most the next screen. It's not like you are going to have a ton of them especially on screen.

And as soon as the pipe thingy's go off screen they are destroyed so no problem with size.

How do you use it? I gave you that in the usage. See again

 // this is inside your Generate class
 protected void Spawn()
 {
     _timeSinceSpawn = 0.0f;
     GameObject spawnedObject = Instantiate(lightnest);
     spawnedObject.AddComponent<DestroyPipeThingy>();
     
     // if you want to destroy the object after a certain amount of time uncomment the following
     // spawnedObject.DestroyPipeThingyAfterDelay((initialDelay);
 }

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

90 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

Related Questions

Welcome screen is dark after unity instalation 2 Answers

gameObject.SetActive (false); Not working 0 Answers

How to limit this particular raycast distance? 3 Answers

method body replaced by unityLinker.exe with a notsupportedexception 1 Answer

Do I render everything in unity? 0 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