Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Image.fillCenter

Switch to Manual
public var fillCenter: bool;

Description

Whether or not to render the center of a Tiled or Sliced image.

This will only have any effect if the Image.sprite has borders.

#pragma strict
public class FillCenterScript {
	public var xmasCalenderDoor;
	// removes the center of the image to reveal the image behind it
	function OpenCalendarDoor() {
		xmasCalenderDoor.fillCenter = false;
	}
}