Enum ScaleUpFilters
The filter to be used when scaling up the texture.
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public enum ScaleUpFilters
Fields
Name | Description |
---|---|
Linear | Uses a weighted average of the closest pixels. Gives a smooth look (recommended for non pixel art games). |
Nearest | Uses the nearest neighbor (in Manhattan Distance) as the neighbor to be used. Gives a pixelated look (recommended for pixel art games). |