= new Dictionary<string, KeywordList>
{
{ "new", KeywordList.New },
{ "material", KeywordList.Material },
{ "plane", KeywordList.Plane },
{ "sphere", KeywordList.Sphere },
{ "diffuse", KeywordList.Diffuse },
{ "specular", KeywordList.Specular },
{ "uniform", KeywordList.Uniform },
{ "checkered", KeywordList.Checkered },
{ "image", KeywordList.Image },
{ "identity", KeywordList.Identity },
{ "translation", KeywordList.Translation },
{ "rotation_x", KeywordList.RotationX },
{ "rotation_y", KeywordList.RotationY },
{ "rotation_z", KeywordList.RotationZ },
{ "scaling", KeywordList.Scaling },
{ "camera", KeywordList.Camera },
{ "orthogonal", KeywordList.Orthogonal },
{ "perspective", KeywordList.Perspective },
{ "float", KeywordList.Float },
{ "pointlight", KeywordList.PointLight }
}
KeywordList
Enumeration of all possible keywords encountered in a Scene File.
Definition: SceneFiles.cs:123
Dictionary linking the keyword to its string identifier.