Game Development Asked by amin007 on February 21, 2021
In my game when you lose, A panel with a button on it appears and if you don’t have enough coins, You may be directed to shop by hitting shop button. when buying is completed you can return to the scene from where you left it and resume the game. I’m using PlayerPrefs to save properties like slider.value my player position timescale etc, But I can’t access to Transform of an Instantiated GameObject (Clone). it acts like obstacle and is Instantiated continuously. Here is my script;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using CodeStage.AntiCheat.ObscuredTypes;
using CodeStage.AntiCheat.Detectors;
public class Spawner5 : MonoBehaviour {
public float maxTime=1;
public float Timer = 0;
public GameObject pipe;
public float height;
// Use this for initialization
void Start () {
pipe = GameObject.FindGameObjectWithTag ("Gear");
}
// Update is called once per frame
void Update () {
if (Timer > maxTime) {
GameObject newpipe = Instantiate (pipe);
newpipe.transform.position = transform.position + new Vector3(4, Random.Range (-height, height) ,0);
Destroy (newpipe, 15);
Timer = 0;
}
Timer += Time.deltaTime;
}
}
I solved my problem by using LoadSceneMode.Additive
Answered by amin007 on February 21, 2021
Get help from others!
Recent Questions
Recent Answers
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP