File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ Library of utilitities for procedural generation
1717#### Using UnityPackageManager (for Unity 2019.3 or later)
1818Open the package manager window (menu: Window > Package Manager)<br />
1919Select "Add package from git URL...", fill in the pop-up with the following link:<br />
20- https://github.com/coryleach/UnityProcgen.git#0.0.8 <br />
20+ https://github.com/coryleach/UnityProcgen.git#0.0.9 <br />
2121
2222#### Using UnityPackageManager (for Unity 2019.1 or later)
2323
2424Find the manifest.json file in the Packages folder of your project and edit it to look like this:
2525``` js
2626{
2727 " dependencies" : {
28- " com.gameframe.procgen" : " https://github.com/coryleach/UnityProcgen.git#0.0.8 " ,
28+ " com.gameframe.procgen" : " https://github.com/coryleach/UnityProcgen.git#0.0.9 " ,
2929 ...
3030 },
3131}
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ public interface IRandomNumberGenerator
1212 ushort NextUshort ( ) ;
1313 byte NextByte ( ) ;
1414 int NextInt ( ) ;
15+ int NextIntRange ( int min , int max ) ;
1516 short NextShort ( ) ;
1617 float NextFloatZeroToOne ( ) ;
1718 float NextFloatNegOneToOne ( ) ;
Original file line number Diff line number Diff line change 33 "name" : " com.gameframe.procgen" ,
44 "displayName" : " Gameframe.Procgen" ,
55 "repositoryName" : " UnityProcgen" ,
6- "version" : " 0.0.8 " ,
6+ "version" : " 0.0.9 " ,
77 "description" : " Library of utilitities for procedural generation" ,
88 "type" : " library" ,
99 "keywords" : [],
You can’t perform that action at this time.
0 commit comments