This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Created by: Fadrik Alexander | |
Full Youtube Tutorial on this Script: https://youtu.be/HVueQ2ikOQc | |
Please note that the seed should be set before any randomization so this has to be called first | |
*/ | |
using UnityEngine; | |
public class RandomSeedController : MonoBehaviour |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Full Youtube Tutorial on this Script: https://youtu.be/84rs2Q0z9ak | |
//The script doesn't have any kind of Input Validation you should added to the lists before calling the functions | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class ProbabilitiesController : MonoBehaviour | |
{ | |
#region Basic Probability check |