This Resort Visualizer prototype is being created for Pillar Workshop by students at Ferris State University. The goal of this project is to provide the client with a 3D web-based interactive visualizer. The visualizer will run on the WebGL JavaScirpt API and will be built in Unity 3D.
This project uses Unity and WebGL. Go check them out if you don't have them locally installed.
Currently, this section is barren, as new features are built into the project this section will be updated.
Logan Armstrong |
---|
Kyle Andrews |
---|
Brent Perko | Ed Chrzanowski | Cameron Ames | Brad Vriesman | Jole Striegle |
---|---|---|---|---|
Currently, this section is barren, as new features are built into the project this section will be updated.
Working Files:
(yyyy-mm-dd)_(ObjectName)_(Unwrapped (U) or NoUnwrap (NU))_(iteration #)_(initials of person who saved iteration).(obj or fbx)
Example:
2017-01-29_EiffelTower_NU_05_EC.obj
Working files:
(yyyy-mm-dd)_(ObjectName)_(initials of person who saved iteration).(texturing software)
Example :
2017-01-29_EifelTower_EC_.psd
Finals:
(Final)_(ObjectName)_(initials of person who saved iteration)_(mapname:DIFF,SPEC,NORM,etc.).png
Example:
Final_EifelTower_EC_DIFF.png
We will be following the standard naming conventions set by Microsoft's .NET Framework, see Programming Style below for specific changes.
Tabs over spaces, for this project we will be using four column tabs and the Allman indent style. All selection and iteration single-line statements will have a beginning and ending brace.
if(x == y) { return true; }
All private variables will have an underscore prefix.
All global variables must declare their using properties and private variable counterparts.
private int m_numOfCows = 2;
public int g_numOfCows
{
get
{
return m_numOfCows;
}
}
We should never allow other scripts to set a public global variable, instead we’ll create a public function that sets the private variable.
public void SetNumOfCows(int newNumOfCows)
{
m_numOfCows = newNumOfCows;
}
Feel free to open an issue or clone this project to start working on your own, however, fixes and features contributions will only be accepted from Ferris State University students who are currently on the Resort Visualizer team.
Creative Commons Attribution-NonCommercial 4.0 International Public License (c) Ferris State University