소스 검색

updated package and readme descriptions

Ronen 8 년 전
부모
커밋
ef0f247557
2개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 1
      MonoGameSceneGraph.nuspec
  2. 2 2
      README.md

+ 2 - 1
MonoGameSceneGraph.nuspec

@@ -6,13 +6,14 @@
 	<authors>Ronen Ness</authors>
 	<owners>RonenNess</owners>
 	<title>MonoGame Scene Graph</title>
+	<summary>This lib implements basic Nodes, Transformations, and frustum-based culling required to implement a Scene Graphs in MonoGame.</summary>
 	<licenseUrl>https://en.wikipedia.org/wiki/MIT_License</licenseUrl>
 	<projectUrl>https://github.com/RonenNess/MonoGame-SceneGraph</projectUrl>
 	<iconUrl>https://raw.githubusercontent.com/RonenNess/MonoGame-SceneGraph/master/icon.png</iconUrl>
 	<requireLicenseAcceptance>false</requireLicenseAcceptance>
 	<releaseNotes>Added Culling Nodes and Bounding Boxes support + minor changes in APIs.</releaseNotes>
 	<description>Basic scene graph (node-based transformations) for 3D MonoGame projects.</description>
-	<tags>monogame scene graph gamedev nodes 3d animations</tags>
+	<tags>monogame scene graph gamedev nodes 3d culling animations</tags>
 	<dependencies>
 	</dependencies>
   </metadata>

+ 2 - 2
README.md

@@ -1,8 +1,8 @@
 # MonoGame-SceneGraph
-Simple Nodes &amp; Entities for scene graphs in MonoGame.
+Nodes, Culling &amp; Entities for basic Scene Graphs in MonoGame.
 
 ## What is it
-This mini-lib implements basic node and transformations required to implement a scene graphs in MonoGame.
+This lib implements basic Nodes, Transformations, and frustum-based culling required to implement a Scene Graphs in MonoGame.
 
 ### But what's a scene graph?