2 つの C4Image 間である種のアニメーションまたはトランジションを行うにはどうすればよいですか?
私は次のような設定をしています:
C4Image * img1 = [[C4Image alloc] initWithRawData:rawData width:width height:height];
C4Image * img2 = [[C4Image alloc] initWithRawData:rawData width:width height:height];
[self.canvas addImage:img1];
// insert magic here to trigger transition
[self.canvas addImage:img2];