Skip to content

Commit 39c3e20

Browse files
authored
Merge pull request #3 from coryleach/dev
Removed an unnecessary using causing an error
2 parents 3fd318e + 80f3fc1 commit 39c3e20

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
<p align="center">
2+
<img align="center" src="https://raw.githubusercontent.com/coryleach/UnityPackages/master/Documentation/GameframeFace.gif" />
3+
</p>
14
<h1 align="center">Gameframe.Procgen 👋</h1>
25

36
<!-- BADGE-START -->
47
![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/coryleach/UnityProcgen?include_prereleases)
5-
[![license](https://img.shields.io/github/license/coryleach/UnityGiphy)](https://github.com/coryleach/UnityProcgen/blob/master/LICENSE)
8+
[![license](https://img.shields.io/github/license/coryleach/UnityProcgen)](https://github.com/coryleach/UnityProcgen/blob/master/LICENSE)
69

710
[![twitter](https://img.shields.io/twitter/follow/coryleach.svg?style=social)](https://twitter.com/coryleach)
811
<!-- BADGE-END -->
@@ -14,15 +17,15 @@ Library of utilitities for procedural generation
1417
#### Using UnityPackageManager (for Unity 2019.3 or later)
1518
Open the package manager window (menu: Window > Package Manager)<br/>
1619
Select "Add package from git URL...", fill in the pop-up with the following link:<br/>
17-
https://github.com/coryleach/UnityProcgen.git#0.0.4<br/>
20+
https://github.com/coryleach/UnityProcgen.git#0.0.5<br/>
1821

1922
#### Using UnityPackageManager (for Unity 2019.1 or later)
2023

2124
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
2225
```js
2326
{
2427
"dependencies": {
25-
"com.gameframe.procgen": "https://github.com/coryleach/UnityProcgen.git#0.0.4",
28+
"com.gameframe.procgen": "https://github.com/coryleach/UnityProcgen.git#0.0.5",
2629
...
2730
},
2831
}

Runtime/WorldMap/Views/WorldMapBorderView.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System.Collections.Generic;
22
using System.Linq;
3-
using ICSharpCode.NRefactory.Ast;
43
using UnityEngine;
54
using UnityEngine.Serialization;
65

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "com.gameframe.procgen",
44
"displayName": "Gameframe.Procgen",
55
"repositoryName": "UnityProcgen",
6-
"version": "0.0.4",
6+
"version": "0.0.5",
77
"description": "Library of utilitities for procedural generation",
88
"type": "library",
99
"keywords": [],

0 commit comments

Comments
 (0)