-
Notifications
You must be signed in to change notification settings - Fork 143
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 #122 from AnalyticalGraphicsInc/model-color
Added support for model color, colorBlendMode, and colorBlendAmount
- Loading branch information
Showing
313 changed files
with
128,576 additions
and
128,169 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
namespace CesiumLanguageWriter | ||
{ | ||
/// <summary> | ||
/// The mode to use when blending between a target color and an entity's source color. | ||
/// </summary> | ||
public enum CesiumColorBlendMode | ||
{ | ||
/// <summary> | ||
/// Multiplies the source color by the target color. | ||
/// </summary> | ||
Highlight, | ||
|
||
/// <summary> | ||
/// Replaces the source color with the target color. | ||
/// </summary> | ||
Replace, | ||
|
||
/// <summary> | ||
/// Blends the source color and target color together. | ||
/// </summary> | ||
Mix, | ||
} | ||
} |
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.