Public classes
Scripts/
SDController
SegmentDisplay
SegmentDisplayImage
SegmentDisplaySprite
SingleDigit
SingleSegment
Scripts/Commands/
AddTextCommand
CallbackCommand
ClearCommand
FillCommand
PauseCommand
ScrollTextCommand
SetTextCommand
Introduction page
|
FillCommand
Derived from
AbsSDCommand
Command to clear the display. Clearing may be instant or happen with some effect like scrolling all the content away from display, or clearing display character by character.
Enums
public enum Methods | List of methods how display can be cleared. |
Constructors
Enums
public enum Methods List of methods how display can be cleared. Items | DigitByDigitFromLeft | Fill display digit by digit starting from left. | | DigitByDigitFromRight | Fill display digit by digit starting from right. |
Constructors
public FillCommand () Creates new fill command that will instantly fill the display.
public FillCommand (int startIndex, int count) Creates new fill command that will instantly fill part of display. Parameters | startIndex | Index of first digit to fill. | | count | How many digits to fill. |
public FillCommand (Methods method, float charactersPerSecond) Creates new fill with specified effect. Parameters | method | Method how display is filled, one of the values from enum Methods | | charactersPerSecond | Speed how fast display is cleared, in characters per second |
|