Forgot to change ARGB to RGBA when switching from Color to Color4. Tinting appears to be correct now (from my limited testing)

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@3078 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2009-08-12 15:38:22 +00:00
parent 04f920aea9
commit 76309aed8f
2 changed files with 56 additions and 56 deletions

View File

@@ -196,7 +196,7 @@ namespace VisualParamGenerator
continue;
}
CaptureCollection val = m.Groups["val"].Captures;
colors.Add(string.Format("new Color4({0}, {1}, {2}, {3})", val[3], val[0], val[1], val[2]));
colors.Add(string.Format("new Color4({0}, {1}, {2}, {3})", val[0], val[1], val[2], val[3]));
}
}