-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
camera implemented and basic environment
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Custom for Visual Studio | ||
*.cs diff=csharp | ||
*.sln merge=union | ||
*.csproj merge=union | ||
*.vbproj merge=union | ||
*.fsproj merge=union | ||
*.dbproj merge=union | ||
|
||
# Standard to msysgit | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# OS X only (not needed on other platforms) | ||
.DS_Store | ||
*.swp | ||
*.Trashes | ||
|
||
# All platforms | ||
Library | ||
Temp | ||
*.csproj | ||
*.pidb | ||
*.unityproj | ||
*.sln | ||
*.userprefs |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using UnityEngine; | ||
using System.Collections; | ||
|
||
// Stores properties and behavior global to the game. Properties such as camera pan | ||
// height of the camera off the ground, width of buttons, etc. | ||
// Provides easy access to global variables and lets all parts of the game access them | ||
// e.g. current map name. | ||
namespace Prototype { | ||
|
||
public static class ResourceManager { | ||
public static float ScrollSpeed { get { return 25; } } | ||
public static float RotateSpeed { get { return 100; } } | ||
public static int ScrollWidth { get { return 15; } } | ||
public static float MinCameraHeight { get { return 10; } } | ||
public static float MaxCameraHeight { get { return 40; } } | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.