File tree 3 files changed +4
-3
lines changed
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
17
17
#### Using UnityPackageManager (for Unity 2019.3 or later)
18
18
Open the package manager window (menu: Window > Package Manager)<br />
19
19
Select "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 />
21
21
22
22
#### Using UnityPackageManager (for Unity 2019.1 or later)
23
23
24
24
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
25
25
``` js
26
26
{
27
27
" 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 " ,
29
29
...
30
30
},
31
31
}
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ public interface IRandomNumberGenerator
12
12
ushort NextUshort ( ) ;
13
13
byte NextByte ( ) ;
14
14
int NextInt ( ) ;
15
+ int NextIntRange ( int min , int max ) ;
15
16
short NextShort ( ) ;
16
17
float NextFloatZeroToOne ( ) ;
17
18
float NextFloatNegOneToOne ( ) ;
Original file line number Diff line number Diff line change 3
3
"name" : " com.gameframe.procgen" ,
4
4
"displayName" : " Gameframe.Procgen" ,
5
5
"repositoryName" : " UnityProcgen" ,
6
- "version" : " 0.0.8 " ,
6
+ "version" : " 0.0.9 " ,
7
7
"description" : " Library of utilitities for procedural generation" ,
8
8
"type" : " library" ,
9
9
"keywords" : [],
You can’t perform that action at this time.
0 commit comments