Çok düşünen bir vuruşla (0,25 piksel gibi) bir SKShapeNode yapmaya çalışıyorum. Görünüşe göre, 1 satırın genişliği en küçüğüydü, en azından ekranın üzerinde göründüğü gibi değil.SKShapeNode için bir satırWidth'den azı nasıl ayarlanır?
SKShapeNode *buttonOutline;
buttonOutline = [[SKShapeNode alloc] init];
CGMutablePathRef myPath = CGPathCreateMutable();
CGPathAddRoundedRect(myPath, NULL, CGRectMake(0, 0, 100, 30), 10, 10);
buttonOutline.path = myPath;
buttonOutline.strokeColor=[SKColor grayColor];
buttonOutline.lineWidth= 0.25;
buttonOutline.name = [NSString stringWithFormat:@"%@-buttonOutline", thisButtonName];
buttonOutline.position = CGPointMake(thisXPos,thisYPod);
buttonOutline.alpha = 1;
sayesinde unutmayın, bu işleri ben docs bu her yerde bulamadık –