I summarize the things I learn in a quick and concise way and share them to help others.
In this video, I covered the topic "Unity | Loot System - How to Create Item Drop System." As per the channel's concept, I am demonstrating the most practical and convenient way to implement a loot system in Unity.
All my videos: • Unity 3D | C# Dersleri
Hyper Casual: • Playlist
Only Mechanics: • Playlist
Animation: • Playlist
The contents of this video and the operators or functions used are listed below:
int: It is a data type representing "integer" which holds whole numbers, including negative, positive, and zero values.
array: It is a data structure that holds multiple data of the same type together. Data within an array can be accessed using index numbers.
dizi.Length: It is a property that gives the length of an array, i.e., the total number of elements it contains.
Random.Range: It is a function that generates a random number within a specified range. It produces a random integer or floating-point number within the given limits.
if: It is a conditional statement that checks whether a condition is true or false and executes a specific code block accordingly.
else: It is another conditional statement used alongside an "if" statement. If the first condition is false, it executes an alternative code block.
for loop: It is a loop that iterates a specific number of times. Typically, a counter is used to determine the number of iterations.
#unity #unity3d #unitydersleri #unitytips #oyungeliştirme