NyARToolKit has been moved to github.
DsXRGB32Raster.csでマーカー比較が単色になっていた問題を修正しました。
誤:
public class DsXRGB32Raster : NyARRaster
{
private const int INDEX_R = 0;
private const int INDEX_G = 0;
private const int INDEX_B = 0;
正:
public class DsXRGB32Raster : NyARRaster
{
private const int INDEX_R = 2;
private const int INDEX_G = 1;
private const int INDEX_B = 0;