summaryrefslogtreecommitdiffstats
path: root/IconDummy.c4d/Script.c
blob: 58e5f2e2ddbf9ee3584dabcee1366661b049bf0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#strict 2

static const DT_Menu_IconDummy = ID7I;

func SetIcon(id icon, int nr)
{
	SetGraphics(0, this, icon);
	SetPicture(GetDefCoreVal("Picture", "DefCore", icon, 0) + nr * GetDefCoreVal("Picture", "DefCore", icon, 2), GetDefCoreVal("Picture", "DefCore", icon, 1), GetDefCoreVal("Picture", "DefCore", icon, 2), GetDefCoreVal("Picture", "DefCore", icon, 3));
	return this;
}

func SetColor(int color)
{
	SetClrModulation(color);
	return this;
}