Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to 2019.2 + Additional features #31

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added documentation
  • Loading branch information
FALsGames committed Dec 22, 2021
commit 0829fc4b8fb0b6e881fffea37dc59b15a4b0199c
6 changes: 3 additions & 3 deletions Assets/GILES/Code/Scripts/pb_Grid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ void Start()
transform.position = Vector3.zero;
}

/**
* Builds a grid object in 2d space
*/
/// <summary>
/// Builds a grid object in 2d space
/// </summary>
Mesh GridMesh(int lineCount, float scale)
{
float half = (lineCount/2f) * scale;
Expand Down