These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.
This file contains hidden or 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
/// <summary> | |
/// flash the product renderer to help player pick up this object asap. | |
/// </summary> | |
private bool isFlashing = false; | |
IEnumerator flash() { | |
if(isFlashing) | |
yield break; | |
isFlashing = true; |