Комментарии:
WOS C#
ОтветитьI ???
ОтветитьI DOT NO HA TO MAK PLAYERS
ОтветитьHMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM PLAYERS
ОтветитьWhen Im trying to add UI for the health and playing on maximize mode, the UI doens't display. I have tried fixing it already a few hours but nothing helped.
Please help me!, thanks
How do i make the enemies move faster after the player reached certain score?
ОтветитьI keep getting an error for the spawner script saying index was outside the bounds of the array. Please help!
ОтветитьMy projectiles dosen't come from the character and i dont know why?!
Ответитьwhy are you able to set the health of the Player Object from within the Enemy Object? How does the Enemy Object instance have access to the Player Object instance? I am really confused with this.
ОтветитьI have become a lot better at coding from watching your videos!
In this game, I made a health kit by basing it off some of the code for the enemy hurting the player.
Sure I changed like literally 2 lines of code but I was still proud of myself. I love watching your videos and hope to become a great game maker like you
I don't like the projectile behavior. How do I make it follow through until it moves off screen or collides with an enemy? and not stop where the mouse is?
ОтветитьHelp error at:
GetComponent <Tranform>()
Why is timeBtwSpawns equal to startTimeBtw spawns though????
I get that it stops the enemy from spawning every frame, but why?
Utterly amazing, Because of this tutorial I was inspired to make games thanks a lot works really well
Ответитьif i want the projectile target to be the enemy how do i change the script ?
ОтветитьHi noah, can you send the assets pls?
ОтветитьHelped me lot now I know how to make a top down shooter! thanks!!!Make more!
ОтветитьTight Controls!!!!!!!!
Ответитьwait this is the game I made for GMTK gamejam 2020
ОтветитьWhere is the camera follow script
ОтветитьI have an error on the enemy script on the lines 9,12 "The type or namespace name "Player" could not be found" plz help
Ответитьi love tutoria
ОтветитьSoo i followed this and well everything was working perfectly until the part when the ennemy hits the player looses health and the bullet killing the ennemy cuse the ennemy just passes through my player and the bullets pass through the enemies and there is an error about the "void OnTriggerEnter2D" that says that it is declared but never used and an other one about a "MissingReferenceException" that the object type 'GameObject' has been destroyed but im still trying to access it (im new to programming and i really need help)
pls
how to do you make the enemy shoot at you and deal damage
ОтветитьBananas
Read more
Bananas
Read more
I missed 4 years this stream
ОтветитьHello Noa,
I'm a new game developer and created this game with you. I just wanted to thank you for your content. Btw, I added some other features because I want to upload it to a website. If you think that's not okay you can write a comment, assuming you are seeing mine. But I think it won't be a problem since I just wanted to see how game development works.
Thanks a lot!
Its lagging or what but its still watchable :)
ОтветитьI have a problem that in shooting scripts when i hold the mouse button it instanstiates endless projectile
Ответитьwhen i put the input, it thinks it is a variable that I have to put in.
ОтветитьPlease someone help me! I followed along with video and I can't destroy the enemies when I fire. Someone please help me!
Ответитьdidnt know u speak french ( :
ОтветитьI have an error on the spawner script on the lines 19,27 " 'Random' is an ambiguous reference between 'UnityEngine.Random' and 'System.Random' plz help
ОтветитьHow to make the bullet to go pass the mouse position and goes off the screen
ОтветитьI find this code for the spawner much better, you don't even need any spawn points, the spawner creates a circle around itself with a set radius (you can change that in the inspector), and it works great.
Code:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Spawner : MonoBehaviour
{
public GameObject enemy;
public float spawnRate = 2f;
public int spawnAmount = 1;
public float spawnDistance = 15f;
private void Start()
{
InvokeRepeating(nameof(Spawn), this.spawnRate, this.spawnRate);
}
private void Spawn()
{
for (int i = 0; i < this.spawnAmount; i++)
{
Vector3 spawnDirection = Random.insideUnitCircle.normalized * this.spawnDistance;
Vector3 spawnPoint = this.transform.position + spawnDirection;
Instantiate(enemy, spawnPoint, Quaternion.identity);
}
}
}
i keep getting this error: argument 2: cannot convert from 'UnityEngine.Transform' to 'UnityEngine.Vector2'
Ответитьmy enemies spawns too much what should i do
Ответитьu are amazing ♥♠♣♦
Ответитьguys
ОтветитьWhen I am trying to get the player tag to track the player it does not let me and gives me an error pls help
ОтветитьHelp me pls its saying index was outside the bounds of the array pls help me fix
ОтветитьI loved this video, still useful despite the year. This was a lifesaver for me. Thanks a lot, love your videos
ОтветитьI have a question, what if there is a main menu and then you want to put a second scene there, is it possible to create a new scene of the canvas to create games that are like a second level?
Ответить@Blackthornprod I have a question, what if there is a main menu and then you want to put a second scene there, is it possible to create a new scene of the canvas to create games that are like a second level?
ОтветитьI recently finished this video and as my first game I made this a complete game with a menu and bgmusic and all....
Thanks Noa🤗🤗