From 7bebcf69df0646c95b04ffad7d9230398bf44fbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chauntalle=20Schu=CC=88le?= Date: Fri, 15 May 2020 13:34:26 +0200 Subject: [PATCH] cleaned Code --- GoldWars/GoldWars/CancelBtnNode.swift | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/GoldWars/GoldWars/CancelBtnNode.swift b/GoldWars/GoldWars/CancelBtnNode.swift index 34cad7f..770baa5 100644 --- a/GoldWars/GoldWars/CancelBtnNode.swift +++ b/GoldWars/GoldWars/CancelBtnNode.swift @@ -31,26 +31,6 @@ class CancelBtnNode: SKSpriteNode { super.init(texture: texture, color: SKColor.white, size: texture.size()) self.size = CGSize(width: 30, height: 30) self.position = position - - let label = SKLabelNode(fontNamed: "Courier-Bold") - label.fontSize = 30 - label.fontColor = SKColor.black - label.zPosition = 1 - label.verticalAlignmentMode = .center - label.text = text - label.name = "label" - - if iconName.isEmpty { - label.position = CGPoint(x: 0, y: 0) - } else { - label.position = CGPoint(x: size.width * 0.25, y: 0) - let icon = SKSpriteNode(imageNamed: iconName) - icon.position = CGPoint(x: -size.width * 0.25, y: 0) - icon.zPosition = 1 - self.addChild(icon) - } - self.addChild(label) - isUserInteractionEnabled = true }