Skip to content

IndieConstruction/ModularFramework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Modular Framework v.0.7

Modular Framework for Unity3d

Features

WeightedList

Lista persata che contiene oggetti generici, e un peso espresso come intero.

    
    // creazione della lista
    WeightedList<string> elementTypesWeightedList = new WeightedList<string>(
            new List<WeightedElement<string>>() {
                new WeightedElement<string>("WallBlock", 1),
                new WeightedElement<string>("ColoredBlock", 5),
            }
        );

    // restituzione di un elemento random tenendo conto dei pesi
    string e = elementTypesWeightedList.GetRandomElement();

How to add ModularFramework as Submodule in your unity project.

Releases

v.0.7

  • Implementazione MVC pattern.

Next Releases

v.0.8

About

Modular Framework for Unity3d

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages