3
몇 가지 SKLabelNodes에서 커닝을 변경하려고합니다. 이 허용되지 않습니다SKLabelNode에서 NSMutableAttributedString을 사용할 수 있습니까?
NSMutableAttributedString *attributedString;
attributedString = [[NSMutableAttributedString alloc] initWithString:@"Please get wider"];
[attributedString addAttribute:NSKernAttributeName value:@5 range:NSMakeRange(10, 5)];
[self.label setAttributedText:attributedString];
: 나는 다른 답변에서 몇 가지 코드를 사용하려고
[myLabelNode setAttributedText:attributedString];
그리고 이것은 내가 만든 변경을 통해 수행하지 않습니다
myLabelNode.text = attributedString.string;
인가 SKLabelNode에서 커닝을 변경할 수 있습니까?
빠른 답변 : nope – LearnCocos2D