Skip to content

Instantly share code, notes, and snippets.

View jnmquick's full-sized avatar

Jason Quick jnmquick

  • 01:34 (UTC -04:00)
View GitHub Profile
@jnmquick
jnmquick / RecreateGameScene.swift
Last active July 12, 2023 22:24
GameScene where health icon does not move to location
import Foundation
import SpriteKit
enum PhysicCategory: UInt32 {
case player = 1
case bullet = 2
case none = 4
}
class RecreateGameScene: SKScene, SKPhysicsContactDelegate {