Horje
error CS1513: } expected but there is already unity Code Example
error CS1513: } expected but there is already unity
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class NewBehaviourScript : MonoBehaviour
public static float beklemeSuresi;
public GameObject resimObjesi;
    void Start()
    {
        if (beklemeSuresi < 60)
        {
            beklemeSuresi += 2;
        }

        StartCoroutine(ResimGoster(beklemeSuresi));
    }

    IEnumerator bekle(float saniye)
    {
        resimObjesi.SetActive(true);
        yield return new WaitForSeconds(saniye);
        resimObjesi.SetActive(false);
    }
how to fix error cs1513 in unity
cs1513




Csharp

Related
nunjuck if exist Code Example nunjuck if exist Code Example
scale min max to 0 1 Code Example scale min max to 0 1 Code Example
how to assign 2d physics material through script Code Example how to assign 2d physics material through script Code Example
params string[] Code Example params string[] Code Example
how to make font factory text to bold in c# Code Example how to make font factory text to bold in c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8