What would be the best approach for outlining or dropshadowing a font?

后端 未结 10 1819
不思量自难忘°
不思量自难忘° 2020-12-14 11:00

I\'m not finding any support for dropshadow or outline of a font in Sprite Kit. For the dropshadow, I\'m guessing I could create a second SKLabelNode and offset it behind t

10条回答
  •  半阙折子戏
    2020-12-14 11:40

    This is most likely what you are doing, but it works and is simple.

    - (SKLabelNode *) makeDropShadowString:(NSString *) myString
    {
        int offSetX = 3;
        int offSetY = 3;
    
        SKLabelNode *completedString = [SKLabelNode labelNodeWithFontNamed:@"Arial"];
        completedString.fontSize = 30.0f;
        completedString.fontColor = [SKColor yellowColor];
        completedString.text = myString;
    
    
        SKLabelNode *dropShadow = [SKLabelNode labelNodeWithFontNamed:@"Arial"];
        dropShadow.fontSize = 30.0f;
        dropShadow.fontColor = [SKColor blackColor];
        dropShadow.text = myString;
        dropShadow.zPosition = completedString.zPosition - 1;
        dropShadow.position = CGPointMake(dropShadow.position.x - offSetX, dropShadow.position.y - offSetY);
    
        [completedString addChild:dropShadow];
    
        return completedString;
    }
    

    Will try and make outline one as well... but I have a feeling it'll be more tricky... there must be a way to use bitmap fonts .. ??? bmGlyph ...

提交回复
热议问题