Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Saurio

10
Posts
2
Topics
2
Followers
A member registered Oct 25, 2020 · View creator page →

Creator of

Recent community posts

Thank you.

The truth is that I don't know why the music sounded like that, I distorted it a bit but I think it got stuck or something like that, for the text I'm going to try to fix it.

thanks for the support. What I did at the end was reload the scene so that it appeared from the beginning, and although it is not the same, it is used for what I want to do. thanks again for the answers.

Hi. i want to teleport the player when it hits something but i don't know why it doesn't work.

this is my code:

using System.Collections;

using System.Collections.Generic;

using UnityEngine;

public class teleport : MonoBehaviour

{

    

    public GameObject spawner;

    public GameObject player;

    // Start is called before the first frame update

    void Start()

    {

       

        

    }

  

   

    private void OnTriggerEnter(Collider other)

    {

        if (other.CompareTag("Player"))

        {

            player.transform.position = new Vector3(spawner.transform.position.x, spawner.transform.position.y, spawner.transform.position.z);

        }

    }

}

If anyone knows why I would appreciate if you could tell me.

I also try that but it doesn't unlock when scene changes

Thank you, and you didn't do anything wrong it's just a problem that I didn't know how to solve.

thank you.

your game is amazing, the only thing is that you can only go out if you complete the game.

And the boss really have twisted laws :).

(1 edit)

Hi I'm new at game development and this is my first game.

https://saurio.itch.io/ballsvssquares

And I would like to know what you think of him.