forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request MonoGame#1521 from SickheadGames/FbxImporter
Fbx importer
- Loading branch information
Showing
21 changed files
with
1,113 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
MonoGame.Framework.Content.Pipeline/Graphics/BasicMaterialContent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// MonoGame - Copyright (C) The MonoGame Team | ||
// This file is subject to the terms and conditions defined in | ||
// file 'LICENSE.txt', which is part of this source code package. | ||
|
||
namespace Microsoft.Xna.Framework.Content.Pipeline.Graphics | ||
{ | ||
public class BasicMaterialContent : MaterialContent | ||
{ | ||
public const string AlphaKey = "Alpha"; | ||
public const string DiffuseColorKey = "DiffuseColor"; | ||
public const string EmissiveColorKey = "EmissiveColor"; | ||
public const string SpecularColorKey = "SpecularColor"; | ||
public const string SpecularPowerKey = "SpecularPower"; | ||
public const string TextureKey = "Texture"; | ||
public const string VertexColorEnabledKey = "VertexColorEnabled"; | ||
|
||
public float? Alpha { get; set; } | ||
public Color? DiffuseColor { get; set; } | ||
public Color? EmissiveColor { get; set; } | ||
public Color? SpecularColor { get; set; } | ||
public float? SpecularPower { get; set; } | ||
public ExternalReference<TextureContent> Texture { get; set; } | ||
public bool? VertexColorEnabled { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.