Build Information
Successful build of RxSpriteKit, reference 2.0.0 (40be0d
), with Swift 6.0 for macOS (SPM) on 26 Nov 2024 22:59:19 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
31 | open var blendMode: SKBlendMode { get set }
32 | public init()
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:28:18: warning: main actor-isolated property 'colorBlendFactor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var colorBlendFactor: Binder<CGFloat> {
27 | return Binder(self.base) { view, colorBlendFactor in
28 | view.colorBlendFactor = colorBlendFactor
| `- warning: main actor-isolated property 'colorBlendFactor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKLabelNode:29:14: note: mutation of this property is only permitted within the actor
27 | open var fontSize: CGFloat { get set }
28 | open var fontColor: NSColor? { get set }
29 | open var colorBlendFactor: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
30 | open var color: NSColor? { get set }
31 | open var blendMode: SKBlendMode { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:34:18: warning: main actor-isolated property 'fontColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var fontColor: Binder<RSKColor?> {
33 | return Binder(self.base) { view, fontColor in
34 | view.fontColor = fontColor
| `- warning: main actor-isolated property 'fontColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKLabelNode:28:14: note: mutation of this property is only permitted within the actor
26 | @NSCopying @MainActor open var attributedText: NSAttributedString? { get set }
27 | open var fontSize: CGFloat { get set }
28 | open var fontColor: NSColor? { get set }
| `- note: mutation of this property is only permitted within the actor
29 | open var colorBlendFactor: CGFloat { get set }
30 | open var color: NSColor? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:40:18: warning: main actor-isolated property 'fontName' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var fontName: Binder<String?> {
39 | return Binder(self.base) { view, fontName in
40 | view.fontName = fontName
| `- warning: main actor-isolated property 'fontName' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKLabelNode:23:14: note: mutation of this property is only permitted within the actor
21 | @available(macOS 10.13, *)
22 | open var preferredMaxLayoutWidth: CGFloat { get set }
23 | open var fontName: String? { get set }
| `- note: mutation of this property is only permitted within the actor
24 | open var text: String? { get set }
25 | @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:46:18: warning: main actor-isolated property 'fontSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var fontSize: Binder<CGFloat> {
45 | return Binder(self.base) { view, fontSize in
46 | view.fontSize = fontSize
| `- warning: main actor-isolated property 'fontSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
SpriteKit.SKLabelNode:27:14: note: mutation of this property is only permitted within the actor
25 | @available(macOS 10.13, *)
26 | @NSCopying @MainActor open var attributedText: NSAttributedString? { get set }
27 | open var fontSize: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
28 | open var fontColor: NSColor? { get set }
29 | open var colorBlendFactor: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:52:18: warning: main actor-isolated property 'horizontalAlignmentMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var horizontalAlignmentMode: Binder<SKLabelHorizontalAlignmentMode> {
51 | return Binder(self.base) { view, horizontalAlignmentMode in
52 | view.horizontalAlignmentMode = horizontalAlignmentMode
| `- warning: main actor-isolated property 'horizontalAlignmentMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
SpriteKit.SKLabelNode:16:14: note: mutation of this property is only permitted within the actor
14 | public init(fontNamed fontName: String?)
15 | open var verticalAlignmentMode: SKLabelVerticalAlignmentMode { get set }
16 | open var horizontalAlignmentMode: SKLabelHorizontalAlignmentMode { get set }
| `- note: mutation of this property is only permitted within the actor
17 | @available(macOS 10.13, *)
18 | open var numberOfLines: Int { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:58:18: warning: main actor-isolated property 'lineBreakMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var lineBreakMode: Binder<RSKLineBreakMode> {
57 | return Binder(self.base) { view, lineBreakMode in
58 | view.lineBreakMode = lineBreakMode
| `- warning: main actor-isolated property 'lineBreakMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
SpriteKit.SKLabelNode:20:14: note: mutation of this property is only permitted within the actor
18 | open var numberOfLines: Int { get set }
19 | @available(macOS 10.13, *)
20 | open var lineBreakMode: NSLineBreakMode { get set }
| `- note: mutation of this property is only permitted within the actor
21 | @available(macOS 10.13, *)
22 | open var preferredMaxLayoutWidth: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:64:18: warning: main actor-isolated property 'numberOfLines' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var numberOfLines: Binder<Int> {
63 | return Binder(self.base) { view, numberOfLines in
64 | view.numberOfLines = numberOfLines
| `- warning: main actor-isolated property 'numberOfLines' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
65 | }
66 | }
SpriteKit.SKLabelNode:18:14: note: mutation of this property is only permitted within the actor
16 | open var horizontalAlignmentMode: SKLabelHorizontalAlignmentMode { get set }
17 | @available(macOS 10.13, *)
18 | open var numberOfLines: Int { get set }
| `- note: mutation of this property is only permitted within the actor
19 | @available(macOS 10.13, *)
20 | open var lineBreakMode: NSLineBreakMode { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:70:18: warning: main actor-isolated property 'preferredMaxLayoutWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | public var preferredMaxLayoutWidth: Binder<CGFloat> {
69 | return Binder(self.base) { view, preferredMaxLayoutWidth in
70 | view.preferredMaxLayoutWidth = preferredMaxLayoutWidth
| `- warning: main actor-isolated property 'preferredMaxLayoutWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
71 | }
72 | }
SpriteKit.SKLabelNode:22:14: note: mutation of this property is only permitted within the actor
20 | open var lineBreakMode: NSLineBreakMode { get set }
21 | @available(macOS 10.13, *)
22 | open var preferredMaxLayoutWidth: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
23 | open var fontName: String? { get set }
24 | open var text: String? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:76:18: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
74 | public var text: Binder<String?> {
75 | return Binder(self.base) { view, text in
76 | view.text = text
| `- warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
77 | }
78 | }
SpriteKit.SKLabelNode:24:14: note: mutation of this property is only permitted within the actor
22 | open var preferredMaxLayoutWidth: CGFloat { get set }
23 | open var fontName: String? { get set }
24 | open var text: String? { get set }
| `- note: mutation of this property is only permitted within the actor
25 | @available(macOS 10.13, *)
26 | @NSCopying @MainActor open var attributedText: NSAttributedString? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:82:18: warning: main actor-isolated property 'verticalAlignmentMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
80 | public var verticalAlignmentMode: Binder<SKLabelVerticalAlignmentMode> {
81 | return Binder(self.base) { view, verticalAlignmentMode in
82 | view.verticalAlignmentMode = verticalAlignmentMode
| `- warning: main actor-isolated property 'verticalAlignmentMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
83 | }
84 | }
SpriteKit.SKLabelNode:15:14: note: mutation of this property is only permitted within the actor
13 | open class func labelNodeWithFontNamed(_ fontName: String?) -> Self
14 | public init(fontNamed fontName: String?)
15 | open var verticalAlignmentMode: SKLabelVerticalAlignmentMode { get set }
| `- note: mutation of this property is only permitted within the actor
16 | open var horizontalAlignmentMode: SKLabelHorizontalAlignmentMode { get set }
17 | @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:10:18: warning: main actor-isolated property 'ambientColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var ambientColor: Binder<RSKColor> {
9 | return Binder(self.base) { view, ambientColor in
10 | view.ambientColor = ambientColor
| `- warning: main actor-isolated property 'ambientColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKLightNode:7:25: note: mutation of this property is only permitted within the actor
5 | open var enabled: Bool { get set }
6 | open var lightColor: NSColor { get set }
7 | @MainActor open var ambientColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
8 | open var shadowColor: NSColor { get set }
9 | open var falloff: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:16:18: warning: main actor-isolated property 'categoryBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var categoryBitMask: Binder<UInt32> {
15 | return Binder(self.base) { view, categoryBitMask in
16 | view.categoryBitMask = categoryBitMask
| `- warning: main actor-isolated property 'categoryBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKLightNode:10:14: note: mutation of this property is only permitted within the actor
8 | open var shadowColor: NSColor { get set }
9 | open var falloff: CGFloat { get set }
10 | open var categoryBitMask: UInt32 { get set }
| `- note: mutation of this property is only permitted within the actor
11 | public init()
12 | public init?(coder aDecoder: NSCoder)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:22:18: warning: main actor-isolated property 'falloff' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var falloff: Binder<CGFloat> {
21 | return Binder(self.base) { view, falloff in
22 | view.falloff = falloff
| `- warning: main actor-isolated property 'falloff' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
SpriteKit.SKLightNode:9:14: note: mutation of this property is only permitted within the actor
7 | @MainActor open var ambientColor: NSColor { get set }
8 | open var shadowColor: NSColor { get set }
9 | open var falloff: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
10 | open var categoryBitMask: UInt32 { get set }
11 | public init()
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:28:18: warning: main actor-isolated property 'isEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var isEnabled: Binder<Bool> {
27 | return Binder(self.base) { view, isEnabled in
28 | view.isEnabled = isEnabled
| `- warning: main actor-isolated property 'isEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKLightNode:3:14: note: mutation of this property is only permitted within the actor
1 | @available(macOS 10.10, *)
2 | @MainActor open class SKLightNode : SKNode {
3 | open var isEnabled: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
4 | @available(swift, obsoleted: 3, renamed: "isEnabled")
5 | open var enabled: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:34:18: warning: main actor-isolated property 'lightColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var lightColor: Binder<RSKColor> {
33 | return Binder(self.base) { view, lightColor in
34 | view.lightColor = lightColor
| `- warning: main actor-isolated property 'lightColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKLightNode:6:14: note: mutation of this property is only permitted within the actor
4 | @available(swift, obsoleted: 3, renamed: "isEnabled")
5 | open var enabled: Bool { get set }
6 | open var lightColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
7 | @MainActor open var ambientColor: NSColor { get set }
8 | open var shadowColor: NSColor { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:40:18: warning: main actor-isolated property 'shadowColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var shadowColor: Binder<RSKColor> {
39 | return Binder(self.base) { view, shadowColor in
40 | view.shadowColor = shadowColor
| `- warning: main actor-isolated property 'shadowColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKLightNode:8:14: note: mutation of this property is only permitted within the actor
6 | open var lightColor: NSColor { get set }
7 | @MainActor open var ambientColor: NSColor { get set }
8 | open var shadowColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
9 | open var falloff: CGFloat { get set }
10 | open var categoryBitMask: UInt32 { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:10:18: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var alpha: Binder<CGFloat> {
9 | return Binder(self.base) { view, alpha in
10 | view.alpha = alpha
| `- warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKNode:22:25: note: mutation of this property is only permitted within the actor
20 | open var yScale: CGFloat { get set }
21 | open var speed: CGFloat { get set }
22 | @MainActor open var alpha: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
23 | open var isPaused: Bool { get set }
24 | @available(swift, obsoleted: 3, renamed: "isPaused")
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:16:18: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var isHidden: Binder<Bool> {
15 | return Binder(self.base) { view, isHidden in
16 | view.isHidden = isHidden
| `- warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKNode:26:14: note: mutation of this property is only permitted within the actor
24 | @available(swift, obsoleted: 3, renamed: "isPaused")
25 | open var paused: Bool { get set }
26 | open var isHidden: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
27 | @available(swift, obsoleted: 3, renamed: "isHidden")
28 | open var hidden: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:22:18: warning: main actor-isolated property 'isPaused' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var isPaused: Binder<Bool> {
21 | return Binder(self.base) { view, isPaused in
22 | view.isPaused = isPaused
| `- warning: main actor-isolated property 'isPaused' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
SpriteKit.SKNode:23:14: note: mutation of this property is only permitted within the actor
21 | open var speed: CGFloat { get set }
22 | @MainActor open var alpha: CGFloat { get set }
23 | open var isPaused: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
24 | @available(swift, obsoleted: 3, renamed: "isPaused")
25 | open var paused: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:28:18: warning: main actor-isolated property 'position' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var position: Binder<CGPoint> {
27 | return Binder(self.base) { view, position in
28 | view.position = position
| `- warning: main actor-isolated property 'position' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKNode:16:14: note: mutation of this property is only permitted within the actor
14 | open var frame: CGRect { get }
15 | open func calculateAccumulatedFrame() -> CGRect
16 | open var position: CGPoint { get set }
| `- note: mutation of this property is only permitted within the actor
17 | open var zPosition: CGFloat { get set }
18 | open var zRotation: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:34:18: warning: main actor-isolated property 'speed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var speed: Binder<CGFloat> {
33 | return Binder(self.base) { view, speed in
34 | view.speed = speed
| `- warning: main actor-isolated property 'speed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKNode:21:14: note: mutation of this property is only permitted within the actor
19 | open var xScale: CGFloat { get set }
20 | open var yScale: CGFloat { get set }
21 | open var speed: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
22 | @MainActor open var alpha: CGFloat { get set }
23 | open var isPaused: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:40:18: warning: main actor-isolated property 'xScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var xScale: Binder<CGFloat> {
39 | return Binder(self.base) { view, xScale in
40 | view.xScale = xScale
| `- warning: main actor-isolated property 'xScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKNode:19:14: note: mutation of this property is only permitted within the actor
17 | open var zPosition: CGFloat { get set }
18 | open var zRotation: CGFloat { get set }
19 | open var xScale: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
20 | open var yScale: CGFloat { get set }
21 | open var speed: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:46:18: warning: main actor-isolated property 'yScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var yScale: Binder<CGFloat> {
45 | return Binder(self.base) { view, yScale in
46 | view.yScale = yScale
| `- warning: main actor-isolated property 'yScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
SpriteKit.SKNode:20:14: note: mutation of this property is only permitted within the actor
18 | open var zRotation: CGFloat { get set }
19 | open var xScale: CGFloat { get set }
20 | open var yScale: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
21 | open var speed: CGFloat { get set }
22 | @MainActor open var alpha: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:52:18: warning: main actor-isolated property 'zPosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var zPosition: Binder<CGFloat> {
51 | return Binder(self.base) { view, zPosition in
52 | view.zPosition = zPosition
| `- warning: main actor-isolated property 'zPosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
SpriteKit.SKNode:17:14: note: mutation of this property is only permitted within the actor
15 | open func calculateAccumulatedFrame() -> CGRect
16 | open var position: CGPoint { get set }
17 | open var zPosition: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
18 | open var zRotation: CGFloat { get set }
19 | open var xScale: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:58:18: warning: main actor-isolated property 'zRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var zRotation: Binder<CGFloat> {
57 | return Binder(self.base) { view, zRotation in
58 | view.zRotation = zRotation
| `- warning: main actor-isolated property 'zRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
SpriteKit.SKNode:18:14: note: mutation of this property is only permitted within the actor
16 | open var position: CGPoint { get set }
17 | open var zPosition: CGFloat { get set }
18 | open var zRotation: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
19 | open var xScale: CGFloat { get set }
20 | open var yScale: CGFloat { get set }
[284/301] Compiling RxSpriteKit SKNode+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:10:18: warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var attributedText: Binder<NSAttributedString?> {
9 | return Binder(self.base) { view, attributedText in
10 | view.attributedText = attributedText
| `- warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKLabelNode:26:36: note: mutation of this property is only permitted within the actor
24 | open var text: String? { get set }
25 | @available(macOS 10.13, *)
26 | @NSCopying @MainActor open var attributedText: NSAttributedString? { get set }
| `- note: mutation of this property is only permitted within the actor
27 | open var fontSize: CGFloat { get set }
28 | open var fontColor: NSColor? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:16:18: warning: main actor-isolated property 'blendMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var blendMode: Binder<SKBlendMode> {
15 | return Binder(self.base) { view, blendMode in
16 | view.blendMode = blendMode
| `- warning: main actor-isolated property 'blendMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKLabelNode:31:14: note: mutation of this property is only permitted within the actor
29 | open var colorBlendFactor: CGFloat { get set }
30 | open var color: NSColor? { get set }
31 | open var blendMode: SKBlendMode { get set }
| `- note: mutation of this property is only permitted within the actor
32 | public init()
33 | public init?(coder aDecoder: NSCoder)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:22:18: warning: main actor-isolated property 'color' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var color: Binder<RSKColor?> {
21 | return Binder(self.base) { view, color in
22 | view.color = color
| `- warning: main actor-isolated property 'color' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
SpriteKit.SKLabelNode:30:14: note: mutation of this property is only permitted within the actor
28 | open var fontColor: NSColor? { get set }
29 | open var colorBlendFactor: CGFloat { get set }
30 | open var color: NSColor? { get set }
| `- note: mutation of this property is only permitted within the actor
31 | open var blendMode: SKBlendMode { get set }
32 | public init()
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:28:18: warning: main actor-isolated property 'colorBlendFactor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var colorBlendFactor: Binder<CGFloat> {
27 | return Binder(self.base) { view, colorBlendFactor in
28 | view.colorBlendFactor = colorBlendFactor
| `- warning: main actor-isolated property 'colorBlendFactor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKLabelNode:29:14: note: mutation of this property is only permitted within the actor
27 | open var fontSize: CGFloat { get set }
28 | open var fontColor: NSColor? { get set }
29 | open var colorBlendFactor: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
30 | open var color: NSColor? { get set }
31 | open var blendMode: SKBlendMode { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:34:18: warning: main actor-isolated property 'fontColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var fontColor: Binder<RSKColor?> {
33 | return Binder(self.base) { view, fontColor in
34 | view.fontColor = fontColor
| `- warning: main actor-isolated property 'fontColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKLabelNode:28:14: note: mutation of this property is only permitted within the actor
26 | @NSCopying @MainActor open var attributedText: NSAttributedString? { get set }
27 | open var fontSize: CGFloat { get set }
28 | open var fontColor: NSColor? { get set }
| `- note: mutation of this property is only permitted within the actor
29 | open var colorBlendFactor: CGFloat { get set }
30 | open var color: NSColor? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:40:18: warning: main actor-isolated property 'fontName' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var fontName: Binder<String?> {
39 | return Binder(self.base) { view, fontName in
40 | view.fontName = fontName
| `- warning: main actor-isolated property 'fontName' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKLabelNode:23:14: note: mutation of this property is only permitted within the actor
21 | @available(macOS 10.13, *)
22 | open var preferredMaxLayoutWidth: CGFloat { get set }
23 | open var fontName: String? { get set }
| `- note: mutation of this property is only permitted within the actor
24 | open var text: String? { get set }
25 | @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:46:18: warning: main actor-isolated property 'fontSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var fontSize: Binder<CGFloat> {
45 | return Binder(self.base) { view, fontSize in
46 | view.fontSize = fontSize
| `- warning: main actor-isolated property 'fontSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
SpriteKit.SKLabelNode:27:14: note: mutation of this property is only permitted within the actor
25 | @available(macOS 10.13, *)
26 | @NSCopying @MainActor open var attributedText: NSAttributedString? { get set }
27 | open var fontSize: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
28 | open var fontColor: NSColor? { get set }
29 | open var colorBlendFactor: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:52:18: warning: main actor-isolated property 'horizontalAlignmentMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var horizontalAlignmentMode: Binder<SKLabelHorizontalAlignmentMode> {
51 | return Binder(self.base) { view, horizontalAlignmentMode in
52 | view.horizontalAlignmentMode = horizontalAlignmentMode
| `- warning: main actor-isolated property 'horizontalAlignmentMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
SpriteKit.SKLabelNode:16:14: note: mutation of this property is only permitted within the actor
14 | public init(fontNamed fontName: String?)
15 | open var verticalAlignmentMode: SKLabelVerticalAlignmentMode { get set }
16 | open var horizontalAlignmentMode: SKLabelHorizontalAlignmentMode { get set }
| `- note: mutation of this property is only permitted within the actor
17 | @available(macOS 10.13, *)
18 | open var numberOfLines: Int { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:58:18: warning: main actor-isolated property 'lineBreakMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var lineBreakMode: Binder<RSKLineBreakMode> {
57 | return Binder(self.base) { view, lineBreakMode in
58 | view.lineBreakMode = lineBreakMode
| `- warning: main actor-isolated property 'lineBreakMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
SpriteKit.SKLabelNode:20:14: note: mutation of this property is only permitted within the actor
18 | open var numberOfLines: Int { get set }
19 | @available(macOS 10.13, *)
20 | open var lineBreakMode: NSLineBreakMode { get set }
| `- note: mutation of this property is only permitted within the actor
21 | @available(macOS 10.13, *)
22 | open var preferredMaxLayoutWidth: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:64:18: warning: main actor-isolated property 'numberOfLines' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var numberOfLines: Binder<Int> {
63 | return Binder(self.base) { view, numberOfLines in
64 | view.numberOfLines = numberOfLines
| `- warning: main actor-isolated property 'numberOfLines' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
65 | }
66 | }
SpriteKit.SKLabelNode:18:14: note: mutation of this property is only permitted within the actor
16 | open var horizontalAlignmentMode: SKLabelHorizontalAlignmentMode { get set }
17 | @available(macOS 10.13, *)
18 | open var numberOfLines: Int { get set }
| `- note: mutation of this property is only permitted within the actor
19 | @available(macOS 10.13, *)
20 | open var lineBreakMode: NSLineBreakMode { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:70:18: warning: main actor-isolated property 'preferredMaxLayoutWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | public var preferredMaxLayoutWidth: Binder<CGFloat> {
69 | return Binder(self.base) { view, preferredMaxLayoutWidth in
70 | view.preferredMaxLayoutWidth = preferredMaxLayoutWidth
| `- warning: main actor-isolated property 'preferredMaxLayoutWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
71 | }
72 | }
SpriteKit.SKLabelNode:22:14: note: mutation of this property is only permitted within the actor
20 | open var lineBreakMode: NSLineBreakMode { get set }
21 | @available(macOS 10.13, *)
22 | open var preferredMaxLayoutWidth: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
23 | open var fontName: String? { get set }
24 | open var text: String? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:76:18: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
74 | public var text: Binder<String?> {
75 | return Binder(self.base) { view, text in
76 | view.text = text
| `- warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
77 | }
78 | }
SpriteKit.SKLabelNode:24:14: note: mutation of this property is only permitted within the actor
22 | open var preferredMaxLayoutWidth: CGFloat { get set }
23 | open var fontName: String? { get set }
24 | open var text: String? { get set }
| `- note: mutation of this property is only permitted within the actor
25 | @available(macOS 10.13, *)
26 | @NSCopying @MainActor open var attributedText: NSAttributedString? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLabelNode+Binder.swift:82:18: warning: main actor-isolated property 'verticalAlignmentMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
80 | public var verticalAlignmentMode: Binder<SKLabelVerticalAlignmentMode> {
81 | return Binder(self.base) { view, verticalAlignmentMode in
82 | view.verticalAlignmentMode = verticalAlignmentMode
| `- warning: main actor-isolated property 'verticalAlignmentMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
83 | }
84 | }
SpriteKit.SKLabelNode:15:14: note: mutation of this property is only permitted within the actor
13 | open class func labelNodeWithFontNamed(_ fontName: String?) -> Self
14 | public init(fontNamed fontName: String?)
15 | open var verticalAlignmentMode: SKLabelVerticalAlignmentMode { get set }
| `- note: mutation of this property is only permitted within the actor
16 | open var horizontalAlignmentMode: SKLabelHorizontalAlignmentMode { get set }
17 | @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:10:18: warning: main actor-isolated property 'ambientColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var ambientColor: Binder<RSKColor> {
9 | return Binder(self.base) { view, ambientColor in
10 | view.ambientColor = ambientColor
| `- warning: main actor-isolated property 'ambientColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKLightNode:7:25: note: mutation of this property is only permitted within the actor
5 | open var enabled: Bool { get set }
6 | open var lightColor: NSColor { get set }
7 | @MainActor open var ambientColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
8 | open var shadowColor: NSColor { get set }
9 | open var falloff: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:16:18: warning: main actor-isolated property 'categoryBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var categoryBitMask: Binder<UInt32> {
15 | return Binder(self.base) { view, categoryBitMask in
16 | view.categoryBitMask = categoryBitMask
| `- warning: main actor-isolated property 'categoryBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKLightNode:10:14: note: mutation of this property is only permitted within the actor
8 | open var shadowColor: NSColor { get set }
9 | open var falloff: CGFloat { get set }
10 | open var categoryBitMask: UInt32 { get set }
| `- note: mutation of this property is only permitted within the actor
11 | public init()
12 | public init?(coder aDecoder: NSCoder)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:22:18: warning: main actor-isolated property 'falloff' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var falloff: Binder<CGFloat> {
21 | return Binder(self.base) { view, falloff in
22 | view.falloff = falloff
| `- warning: main actor-isolated property 'falloff' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
SpriteKit.SKLightNode:9:14: note: mutation of this property is only permitted within the actor
7 | @MainActor open var ambientColor: NSColor { get set }
8 | open var shadowColor: NSColor { get set }
9 | open var falloff: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
10 | open var categoryBitMask: UInt32 { get set }
11 | public init()
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:28:18: warning: main actor-isolated property 'isEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var isEnabled: Binder<Bool> {
27 | return Binder(self.base) { view, isEnabled in
28 | view.isEnabled = isEnabled
| `- warning: main actor-isolated property 'isEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKLightNode:3:14: note: mutation of this property is only permitted within the actor
1 | @available(macOS 10.10, *)
2 | @MainActor open class SKLightNode : SKNode {
3 | open var isEnabled: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
4 | @available(swift, obsoleted: 3, renamed: "isEnabled")
5 | open var enabled: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:34:18: warning: main actor-isolated property 'lightColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var lightColor: Binder<RSKColor> {
33 | return Binder(self.base) { view, lightColor in
34 | view.lightColor = lightColor
| `- warning: main actor-isolated property 'lightColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKLightNode:6:14: note: mutation of this property is only permitted within the actor
4 | @available(swift, obsoleted: 3, renamed: "isEnabled")
5 | open var enabled: Bool { get set }
6 | open var lightColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
7 | @MainActor open var ambientColor: NSColor { get set }
8 | open var shadowColor: NSColor { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKLightNode+Binder.swift:40:18: warning: main actor-isolated property 'shadowColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var shadowColor: Binder<RSKColor> {
39 | return Binder(self.base) { view, shadowColor in
40 | view.shadowColor = shadowColor
| `- warning: main actor-isolated property 'shadowColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKLightNode:8:14: note: mutation of this property is only permitted within the actor
6 | open var lightColor: NSColor { get set }
7 | @MainActor open var ambientColor: NSColor { get set }
8 | open var shadowColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
9 | open var falloff: CGFloat { get set }
10 | open var categoryBitMask: UInt32 { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:10:18: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var alpha: Binder<CGFloat> {
9 | return Binder(self.base) { view, alpha in
10 | view.alpha = alpha
| `- warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKNode:22:25: note: mutation of this property is only permitted within the actor
20 | open var yScale: CGFloat { get set }
21 | open var speed: CGFloat { get set }
22 | @MainActor open var alpha: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
23 | open var isPaused: Bool { get set }
24 | @available(swift, obsoleted: 3, renamed: "isPaused")
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:16:18: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var isHidden: Binder<Bool> {
15 | return Binder(self.base) { view, isHidden in
16 | view.isHidden = isHidden
| `- warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKNode:26:14: note: mutation of this property is only permitted within the actor
24 | @available(swift, obsoleted: 3, renamed: "isPaused")
25 | open var paused: Bool { get set }
26 | open var isHidden: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
27 | @available(swift, obsoleted: 3, renamed: "isHidden")
28 | open var hidden: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:22:18: warning: main actor-isolated property 'isPaused' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var isPaused: Binder<Bool> {
21 | return Binder(self.base) { view, isPaused in
22 | view.isPaused = isPaused
| `- warning: main actor-isolated property 'isPaused' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
SpriteKit.SKNode:23:14: note: mutation of this property is only permitted within the actor
21 | open var speed: CGFloat { get set }
22 | @MainActor open var alpha: CGFloat { get set }
23 | open var isPaused: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
24 | @available(swift, obsoleted: 3, renamed: "isPaused")
25 | open var paused: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:28:18: warning: main actor-isolated property 'position' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var position: Binder<CGPoint> {
27 | return Binder(self.base) { view, position in
28 | view.position = position
| `- warning: main actor-isolated property 'position' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKNode:16:14: note: mutation of this property is only permitted within the actor
14 | open var frame: CGRect { get }
15 | open func calculateAccumulatedFrame() -> CGRect
16 | open var position: CGPoint { get set }
| `- note: mutation of this property is only permitted within the actor
17 | open var zPosition: CGFloat { get set }
18 | open var zRotation: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:34:18: warning: main actor-isolated property 'speed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var speed: Binder<CGFloat> {
33 | return Binder(self.base) { view, speed in
34 | view.speed = speed
| `- warning: main actor-isolated property 'speed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKNode:21:14: note: mutation of this property is only permitted within the actor
19 | open var xScale: CGFloat { get set }
20 | open var yScale: CGFloat { get set }
21 | open var speed: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
22 | @MainActor open var alpha: CGFloat { get set }
23 | open var isPaused: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:40:18: warning: main actor-isolated property 'xScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var xScale: Binder<CGFloat> {
39 | return Binder(self.base) { view, xScale in
40 | view.xScale = xScale
| `- warning: main actor-isolated property 'xScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKNode:19:14: note: mutation of this property is only permitted within the actor
17 | open var zPosition: CGFloat { get set }
18 | open var zRotation: CGFloat { get set }
19 | open var xScale: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
20 | open var yScale: CGFloat { get set }
21 | open var speed: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:46:18: warning: main actor-isolated property 'yScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var yScale: Binder<CGFloat> {
45 | return Binder(self.base) { view, yScale in
46 | view.yScale = yScale
| `- warning: main actor-isolated property 'yScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
SpriteKit.SKNode:20:14: note: mutation of this property is only permitted within the actor
18 | open var zRotation: CGFloat { get set }
19 | open var xScale: CGFloat { get set }
20 | open var yScale: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
21 | open var speed: CGFloat { get set }
22 | @MainActor open var alpha: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:52:18: warning: main actor-isolated property 'zPosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var zPosition: Binder<CGFloat> {
51 | return Binder(self.base) { view, zPosition in
52 | view.zPosition = zPosition
| `- warning: main actor-isolated property 'zPosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
SpriteKit.SKNode:17:14: note: mutation of this property is only permitted within the actor
15 | open func calculateAccumulatedFrame() -> CGRect
16 | open var position: CGPoint { get set }
17 | open var zPosition: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
18 | open var zRotation: CGFloat { get set }
19 | open var xScale: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKNode+Binder.swift:58:18: warning: main actor-isolated property 'zRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var zRotation: Binder<CGFloat> {
57 | return Binder(self.base) { view, zRotation in
58 | view.zRotation = zRotation
| `- warning: main actor-isolated property 'zRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
SpriteKit.SKNode:18:14: note: mutation of this property is only permitted within the actor
16 | open var position: CGPoint { get set }
17 | open var zPosition: CGFloat { get set }
18 | open var zRotation: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
19 | open var xScale: CGFloat { get set }
20 | open var yScale: CGFloat { get set }
[285/301] Compiling RxSpriteKit SKPhysicsBody+Binder.swift
[286/301] Compiling RxSpriteKit SKPhysicsJoint+Binder.swift
[287/301] Compiling RxSpriteKit SKPhysicsJointLimit+Binder.swift
[288/301] Compiling RxSpriteKit SKPhysicsJointPin+Binder.swift
[289/301] Compiling RxSpriteKit SKPhysicsJointSliding+Binder.swift
[290/301] Compiling RxSpriteKit SKPhysicsJointSpring+Binder.swift
[291/301] Compiling RxSpriteKit SKVideoNode+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKVideoNode+Binder.swift:10:18: warning: main actor-isolated property 'anchorPoint' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var anchorPoint: Binder<CGPoint> {
9 | return Binder(self.base) { view, anchorPoint in
10 | view.anchorPoint = anchorPoint
| `- warning: main actor-isolated property 'anchorPoint' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKVideoNode:53:25: note: mutation of this property is only permitted within the actor
51 | open func pause()
52 | open var size: CGSize { get set }
53 | @MainActor open var anchorPoint: CGPoint { get set }
| `- note: mutation of this property is only permitted within the actor
54 | public convenience init()
55 | @available(macOS 10.14, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKVideoNode+Binder.swift:16:18: warning: main actor-isolated property 'size' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var size: Binder<CGSize> {
15 | return Binder(self.base) { view, size in
16 | view.size = size
| `- warning: main actor-isolated property 'size' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKVideoNode:52:14: note: mutation of this property is only permitted within the actor
50 | open func play()
51 | open func pause()
52 | open var size: CGSize { get set }
| `- note: mutation of this property is only permitted within the actor
53 | @MainActor open var anchorPoint: CGPoint { get set }
54 | public convenience init()
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:12:18: warning: main actor-isolated property 'allowsTransparency' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
10 | public var allowsTransparency: Binder<Bool> {
11 | return Binder(self.base) { view, allowsTransparency in
12 | view.allowsTransparency = allowsTransparency
| `- warning: main actor-isolated property 'allowsTransparency' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
13 | }
14 | }
SpriteKit.SKView:18:25: note: mutation of this property is only permitted within the actor
16 | open var asynchronous: Bool { get set }
17 | @available(macOS 10.10, *)
18 | @MainActor open var allowsTransparency: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
19 | open var ignoresSiblingOrder: Bool { get set }
20 | @available(macOS 10.10, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:18:18: warning: main actor-isolated property 'ignoresSiblingOrder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
16 | public var ignoresSiblingOrder: Binder<Bool> {
17 | return Binder(self.base) { view, ignoresSiblingOrder in
18 | view.ignoresSiblingOrder = ignoresSiblingOrder
| `- warning: main actor-isolated property 'ignoresSiblingOrder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
19 | }
20 | }
SpriteKit.SKView:19:14: note: mutation of this property is only permitted within the actor
17 | @available(macOS 10.10, *)
18 | @MainActor open var allowsTransparency: Bool { get set }
19 | open var ignoresSiblingOrder: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
20 | @available(macOS 10.10, *)
21 | open var shouldCullNonVisibleNodes: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:24:18: warning: main actor-isolated property 'isAsynchronous' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
22 | public var isAsynchronous: Binder<Bool> {
23 | return Binder(self.base) { view, isAsynchronous in
24 | view.isAsynchronous = isAsynchronous
| `- warning: main actor-isolated property 'isAsynchronous' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
25 | }
26 | }
SpriteKit.SKView:14:14: note: mutation of this property is only permitted within the actor
12 | @available(macOS 10.10, *)
13 | open var showsFields: Bool { get set }
14 | open var isAsynchronous: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
15 | @available(swift, obsoleted: 3, renamed: "isAsynchronous")
16 | open var asynchronous: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:30:18: warning: main actor-isolated property 'isPaused' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 | public var isPaused: Binder<Bool> {
29 | return Binder(self.base) { view, isPaused in
30 | view.isPaused = isPaused
| `- warning: main actor-isolated property 'isPaused' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
31 | }
32 | }
SpriteKit.SKView:2:14: note: mutation of this property is only permitted within the actor
1 | @MainActor open class SKView : NSView, NSSecureCoding {
2 | open var isPaused: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
3 | @available(swift, obsoleted: 3, renamed: "isPaused")
4 | open var paused: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:36:18: warning: main actor-isolated property 'preferredFramesPerSecond' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
34 | public var preferredFramesPerSecond: Binder<Int> {
35 | return Binder(self.base) { view, preferredFramesPerSecond in
36 | view.preferredFramesPerSecond = preferredFramesPerSecond
| `- warning: main actor-isolated property 'preferredFramesPerSecond' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
37 | }
38 | }
SpriteKit.SKView:23:14: note: mutation of this property is only permitted within the actor
21 | open var shouldCullNonVisibleNodes: Bool { get set }
22 | @available(macOS 10.12, *)
23 | open var preferredFramesPerSecond: Int { get set }
| `- note: mutation of this property is only permitted within the actor
24 | open var disableDepthStencilBuffer: Bool { get set }
25 | @available(macOS 10.12, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:42:18: warning: main actor-isolated property 'shouldCullNonVisibleNodes' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
40 | public var shouldCullNonVisibleNodes: Binder<Bool> {
41 | return Binder(self.base) { view, shouldCullNonVisibleNodes in
42 | view.shouldCullNonVisibleNodes = shouldCullNonVisibleNodes
| `- warning: main actor-isolated property 'shouldCullNonVisibleNodes' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
43 | }
44 | }
SpriteKit.SKView:21:14: note: mutation of this property is only permitted within the actor
19 | open var ignoresSiblingOrder: Bool { get set }
20 | @available(macOS 10.10, *)
21 | open var shouldCullNonVisibleNodes: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
22 | @available(macOS 10.12, *)
23 | open var preferredFramesPerSecond: Int { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:48:18: warning: main actor-isolated property 'showsDrawCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
46 | public var showsDrawCount: Binder<Bool> {
47 | return Binder(self.base) { view, showsDrawCount in
48 | view.showsDrawCount = showsDrawCount
| `- warning: main actor-isolated property 'showsDrawCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
49 | }
50 | }
SpriteKit.SKView:6:14: note: mutation of this property is only permitted within the actor
4 | open var paused: Bool { get set }
5 | open var showsFPS: Bool { get set }
6 | open var showsDrawCount: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
7 | open var showsNodeCount: Bool { get set }
8 | @available(macOS 10.10, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:54:18: warning: main actor-isolated property 'showsFPS' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
52 | public var showsFPS: Binder<Bool> {
53 | return Binder(self.base) { view, showsFPS in
54 | view.showsFPS = showsFPS
| `- warning: main actor-isolated property 'showsFPS' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
55 | }
56 | }
SpriteKit.SKView:5:14: note: mutation of this property is only permitted within the actor
3 | @available(swift, obsoleted: 3, renamed: "isPaused")
4 | open var paused: Bool { get set }
5 | open var showsFPS: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
6 | open var showsDrawCount: Bool { get set }
7 | open var showsNodeCount: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:60:18: warning: main actor-isolated property 'showsFields' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
58 | public var showsFields: Binder<Bool> {
59 | return Binder(self.base) { view, showsFields in
60 | view.showsFields = showsFields
| `- warning: main actor-isolated property 'showsFields' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
61 | }
62 | }
SpriteKit.SKView:13:14: note: mutation of this property is only permitted within the actor
11 | open var showsPhysics: Bool { get set }
12 | @available(macOS 10.10, *)
13 | open var showsFields: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
14 | open var isAsynchronous: Bool { get set }
15 | @available(swift, obsoleted: 3, renamed: "isAsynchronous")
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:66:18: warning: main actor-isolated property 'showsNodeCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
64 | public var showsNodeCount: Binder<Bool> {
65 | return Binder(self.base) { view, showsNodeCount in
66 | view.showsNodeCount = showsNodeCount
| `- warning: main actor-isolated property 'showsNodeCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
67 | }
68 | }
SpriteKit.SKView:7:14: note: mutation of this property is only permitted within the actor
5 | open var showsFPS: Bool { get set }
6 | open var showsDrawCount: Bool { get set }
7 | open var showsNodeCount: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
8 | @available(macOS 10.10, *)
9 | open var showsQuadCount: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:72:18: warning: main actor-isolated property 'showsPhysics' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
70 | public var showsPhysics: Binder<Bool> {
71 | return Binder(self.base) { view, showsPhysics in
72 | view.showsPhysics = showsPhysics
| `- warning: main actor-isolated property 'showsPhysics' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
73 | }
74 | }
SpriteKit.SKView:11:14: note: mutation of this property is only permitted within the actor
9 | open var showsQuadCount: Bool { get set }
10 | @available(macOS 10.10, *)
11 | open var showsPhysics: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
12 | @available(macOS 10.10, *)
13 | open var showsFields: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:78:18: warning: main actor-isolated property 'showsQuadCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
76 | public var showsQuadCount: Binder<Bool> {
77 | return Binder(self.base) { view, showsQuadCount in
78 | view.showsQuadCount = showsQuadCount
| `- warning: main actor-isolated property 'showsQuadCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
79 | }
80 | }
SpriteKit.SKView:9:14: note: mutation of this property is only permitted within the actor
7 | open var showsNodeCount: Bool { get set }
8 | @available(macOS 10.10, *)
9 | open var showsQuadCount: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
10 | @available(macOS 10.10, *)
11 | open var showsPhysics: Bool { get set }
[292/301] Compiling RxSpriteKit SKView+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKVideoNode+Binder.swift:10:18: warning: main actor-isolated property 'anchorPoint' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var anchorPoint: Binder<CGPoint> {
9 | return Binder(self.base) { view, anchorPoint in
10 | view.anchorPoint = anchorPoint
| `- warning: main actor-isolated property 'anchorPoint' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKVideoNode:53:25: note: mutation of this property is only permitted within the actor
51 | open func pause()
52 | open var size: CGSize { get set }
53 | @MainActor open var anchorPoint: CGPoint { get set }
| `- note: mutation of this property is only permitted within the actor
54 | public convenience init()
55 | @available(macOS 10.14, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKVideoNode+Binder.swift:16:18: warning: main actor-isolated property 'size' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var size: Binder<CGSize> {
15 | return Binder(self.base) { view, size in
16 | view.size = size
| `- warning: main actor-isolated property 'size' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKVideoNode:52:14: note: mutation of this property is only permitted within the actor
50 | open func play()
51 | open func pause()
52 | open var size: CGSize { get set }
| `- note: mutation of this property is only permitted within the actor
53 | @MainActor open var anchorPoint: CGPoint { get set }
54 | public convenience init()
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:12:18: warning: main actor-isolated property 'allowsTransparency' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
10 | public var allowsTransparency: Binder<Bool> {
11 | return Binder(self.base) { view, allowsTransparency in
12 | view.allowsTransparency = allowsTransparency
| `- warning: main actor-isolated property 'allowsTransparency' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
13 | }
14 | }
SpriteKit.SKView:18:25: note: mutation of this property is only permitted within the actor
16 | open var asynchronous: Bool { get set }
17 | @available(macOS 10.10, *)
18 | @MainActor open var allowsTransparency: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
19 | open var ignoresSiblingOrder: Bool { get set }
20 | @available(macOS 10.10, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:18:18: warning: main actor-isolated property 'ignoresSiblingOrder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
16 | public var ignoresSiblingOrder: Binder<Bool> {
17 | return Binder(self.base) { view, ignoresSiblingOrder in
18 | view.ignoresSiblingOrder = ignoresSiblingOrder
| `- warning: main actor-isolated property 'ignoresSiblingOrder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
19 | }
20 | }
SpriteKit.SKView:19:14: note: mutation of this property is only permitted within the actor
17 | @available(macOS 10.10, *)
18 | @MainActor open var allowsTransparency: Bool { get set }
19 | open var ignoresSiblingOrder: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
20 | @available(macOS 10.10, *)
21 | open var shouldCullNonVisibleNodes: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:24:18: warning: main actor-isolated property 'isAsynchronous' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
22 | public var isAsynchronous: Binder<Bool> {
23 | return Binder(self.base) { view, isAsynchronous in
24 | view.isAsynchronous = isAsynchronous
| `- warning: main actor-isolated property 'isAsynchronous' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
25 | }
26 | }
SpriteKit.SKView:14:14: note: mutation of this property is only permitted within the actor
12 | @available(macOS 10.10, *)
13 | open var showsFields: Bool { get set }
14 | open var isAsynchronous: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
15 | @available(swift, obsoleted: 3, renamed: "isAsynchronous")
16 | open var asynchronous: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:30:18: warning: main actor-isolated property 'isPaused' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 | public var isPaused: Binder<Bool> {
29 | return Binder(self.base) { view, isPaused in
30 | view.isPaused = isPaused
| `- warning: main actor-isolated property 'isPaused' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
31 | }
32 | }
SpriteKit.SKView:2:14: note: mutation of this property is only permitted within the actor
1 | @MainActor open class SKView : NSView, NSSecureCoding {
2 | open var isPaused: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
3 | @available(swift, obsoleted: 3, renamed: "isPaused")
4 | open var paused: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:36:18: warning: main actor-isolated property 'preferredFramesPerSecond' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
34 | public var preferredFramesPerSecond: Binder<Int> {
35 | return Binder(self.base) { view, preferredFramesPerSecond in
36 | view.preferredFramesPerSecond = preferredFramesPerSecond
| `- warning: main actor-isolated property 'preferredFramesPerSecond' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
37 | }
38 | }
SpriteKit.SKView:23:14: note: mutation of this property is only permitted within the actor
21 | open var shouldCullNonVisibleNodes: Bool { get set }
22 | @available(macOS 10.12, *)
23 | open var preferredFramesPerSecond: Int { get set }
| `- note: mutation of this property is only permitted within the actor
24 | open var disableDepthStencilBuffer: Bool { get set }
25 | @available(macOS 10.12, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:42:18: warning: main actor-isolated property 'shouldCullNonVisibleNodes' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
40 | public var shouldCullNonVisibleNodes: Binder<Bool> {
41 | return Binder(self.base) { view, shouldCullNonVisibleNodes in
42 | view.shouldCullNonVisibleNodes = shouldCullNonVisibleNodes
| `- warning: main actor-isolated property 'shouldCullNonVisibleNodes' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
43 | }
44 | }
SpriteKit.SKView:21:14: note: mutation of this property is only permitted within the actor
19 | open var ignoresSiblingOrder: Bool { get set }
20 | @available(macOS 10.10, *)
21 | open var shouldCullNonVisibleNodes: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
22 | @available(macOS 10.12, *)
23 | open var preferredFramesPerSecond: Int { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:48:18: warning: main actor-isolated property 'showsDrawCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
46 | public var showsDrawCount: Binder<Bool> {
47 | return Binder(self.base) { view, showsDrawCount in
48 | view.showsDrawCount = showsDrawCount
| `- warning: main actor-isolated property 'showsDrawCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
49 | }
50 | }
SpriteKit.SKView:6:14: note: mutation of this property is only permitted within the actor
4 | open var paused: Bool { get set }
5 | open var showsFPS: Bool { get set }
6 | open var showsDrawCount: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
7 | open var showsNodeCount: Bool { get set }
8 | @available(macOS 10.10, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:54:18: warning: main actor-isolated property 'showsFPS' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
52 | public var showsFPS: Binder<Bool> {
53 | return Binder(self.base) { view, showsFPS in
54 | view.showsFPS = showsFPS
| `- warning: main actor-isolated property 'showsFPS' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
55 | }
56 | }
SpriteKit.SKView:5:14: note: mutation of this property is only permitted within the actor
3 | @available(swift, obsoleted: 3, renamed: "isPaused")
4 | open var paused: Bool { get set }
5 | open var showsFPS: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
6 | open var showsDrawCount: Bool { get set }
7 | open var showsNodeCount: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:60:18: warning: main actor-isolated property 'showsFields' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
58 | public var showsFields: Binder<Bool> {
59 | return Binder(self.base) { view, showsFields in
60 | view.showsFields = showsFields
| `- warning: main actor-isolated property 'showsFields' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
61 | }
62 | }
SpriteKit.SKView:13:14: note: mutation of this property is only permitted within the actor
11 | open var showsPhysics: Bool { get set }
12 | @available(macOS 10.10, *)
13 | open var showsFields: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
14 | open var isAsynchronous: Bool { get set }
15 | @available(swift, obsoleted: 3, renamed: "isAsynchronous")
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:66:18: warning: main actor-isolated property 'showsNodeCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
64 | public var showsNodeCount: Binder<Bool> {
65 | return Binder(self.base) { view, showsNodeCount in
66 | view.showsNodeCount = showsNodeCount
| `- warning: main actor-isolated property 'showsNodeCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
67 | }
68 | }
SpriteKit.SKView:7:14: note: mutation of this property is only permitted within the actor
5 | open var showsFPS: Bool { get set }
6 | open var showsDrawCount: Bool { get set }
7 | open var showsNodeCount: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
8 | @available(macOS 10.10, *)
9 | open var showsQuadCount: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:72:18: warning: main actor-isolated property 'showsPhysics' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
70 | public var showsPhysics: Binder<Bool> {
71 | return Binder(self.base) { view, showsPhysics in
72 | view.showsPhysics = showsPhysics
| `- warning: main actor-isolated property 'showsPhysics' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
73 | }
74 | }
SpriteKit.SKView:11:14: note: mutation of this property is only permitted within the actor
9 | open var showsQuadCount: Bool { get set }
10 | @available(macOS 10.10, *)
11 | open var showsPhysics: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
12 | @available(macOS 10.10, *)
13 | open var showsFields: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKView+Binder.swift:78:18: warning: main actor-isolated property 'showsQuadCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
76 | public var showsQuadCount: Binder<Bool> {
77 | return Binder(self.base) { view, showsQuadCount in
78 | view.showsQuadCount = showsQuadCount
| `- warning: main actor-isolated property 'showsQuadCount' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
79 | }
80 | }
SpriteKit.SKView:9:14: note: mutation of this property is only permitted within the actor
7 | open var showsNodeCount: Bool { get set }
8 | @available(macOS 10.10, *)
9 | open var showsQuadCount: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
10 | @available(macOS 10.10, *)
11 | open var showsPhysics: Bool { get set }
[293/301] Compiling RxSpriteKit SKPhysicsWorld+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:10:18: warning: main actor-isolated property 'anchorPoint' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var anchorPoint: Binder<CGPoint> {
9 | return Binder(self.base) { view, anchorPoint in
10 | view.anchorPoint = anchorPoint
| `- warning: main actor-isolated property 'anchorPoint' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKScene:18:25: note: mutation of this property is only permitted within the actor
16 | @available(macOS 10.10, *)
17 | weak open var delegate: (any SKSceneDelegate)? { get set }
18 | @MainActor open var anchorPoint: CGPoint { get set }
| `- note: mutation of this property is only permitted within the actor
19 | open var physicsWorld: SKPhysicsWorld { get }
20 | weak open var view: SKView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:16:18: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var backgroundColor: Binder<RSKColor> {
15 | return Binder(self.base) { view, backgroundColor in
16 | view.backgroundColor = backgroundColor
| `- warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKScene:15:14: note: mutation of this property is only permitted within the actor
13 | @available(macOS 10.11, *)
14 | open var audioEngine: AVAudioEngine { get }
15 | open var backgroundColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
16 | @available(macOS 10.10, *)
17 | weak open var delegate: (any SKSceneDelegate)? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:22:18: warning: main actor-isolated property 'camera' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var camera: Binder<SKCameraNode?> {
21 | return Binder(self.base) { view, camera in
22 | view.camera = camera
| `- warning: main actor-isolated property 'camera' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
SpriteKit.SKScene:10:19: note: mutation of this property is only permitted within the actor
8 | open var scaleMode: SKSceneScaleMode { get set }
9 | @available(macOS 10.11, *)
10 | weak open var camera: SKCameraNode? { get set }
| `- note: mutation of this property is only permitted within the actor
11 | @available(macOS 10.11, *)
12 | weak open var listener: SKNode? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:28:18: warning: main actor-isolated property 'listener' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var listener: Binder<SKNode?> {
27 | return Binder(self.base) { view, listener in
28 | view.listener = listener
| `- warning: main actor-isolated property 'listener' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKScene:12:19: note: mutation of this property is only permitted within the actor
10 | weak open var camera: SKCameraNode? { get set }
11 | @available(macOS 10.11, *)
12 | weak open var listener: SKNode? { get set }
| `- note: mutation of this property is only permitted within the actor
13 | @available(macOS 10.11, *)
14 | open var audioEngine: AVAudioEngine { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:34:18: warning: main actor-isolated property 'scaleMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var scaleMode: Binder<SKSceneScaleMode> {
33 | return Binder(self.base) { view, scaleMode in
34 | view.scaleMode = scaleMode
| `- warning: main actor-isolated property 'scaleMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKScene:8:14: note: mutation of this property is only permitted within the actor
6 | open func sceneDidLoad()
7 | open var size: CGSize { get set }
8 | open var scaleMode: SKSceneScaleMode { get set }
| `- note: mutation of this property is only permitted within the actor
9 | @available(macOS 10.11, *)
10 | weak open var camera: SKCameraNode? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:40:18: warning: main actor-isolated property 'size' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var size: Binder<CGSize> {
39 | return Binder(self.base) { view, size in
40 | view.size = size
| `- warning: main actor-isolated property 'size' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKScene:7:14: note: mutation of this property is only permitted within the actor
5 | @available(macOS 10.12, *)
6 | open func sceneDidLoad()
7 | open var size: CGSize { get set }
| `- note: mutation of this property is only permitted within the actor
8 | open var scaleMode: SKSceneScaleMode { get set }
9 | @available(macOS 10.11, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:10:18: warning: main actor-isolated property 'blendMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var blendMode: Binder<SKBlendMode> {
9 | return Binder(self.base) { view, blendMode in
10 | view.blendMode = blendMode
| `- warning: main actor-isolated property 'blendMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKShapeNode:72:25: note: mutation of this property is only permitted within the actor
70 | open var strokeColor: NSColor { get set }
71 | open var fillColor: NSColor { get set }
72 | @MainActor open var blendMode: SKBlendMode { get set }
| `- note: mutation of this property is only permitted within the actor
73 | open var isAntialiased: Bool { get set }
74 | @available(swift, obsoleted: 3, renamed: "isAntialiased")
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:16:18: warning: main actor-isolated property 'fillColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var fillColor: Binder<RSKColor> {
15 | return Binder(self.base) { view, fillColor in
16 | view.fillColor = fillColor
| `- warning: main actor-isolated property 'fillColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKShapeNode:71:14: note: mutation of this property is only permitted within the actor
69 | open var path: CGPath? { get set }
70 | open var strokeColor: NSColor { get set }
71 | open var fillColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
72 | @MainActor open var blendMode: SKBlendMode { get set }
73 | open var isAntialiased: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:22:18: warning: main actor-isolated property 'fillShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var fillShader: Binder<SKShader?> {
21 | return Binder(self.base) { view, fillShader in
22 | view.fillShader = fillShader
| `- warning: main actor-isolated property 'fillShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
SpriteKit.SKShapeNode:85:14: note: mutation of this property is only permitted within the actor
83 | open var fillTexture: SKTexture? { get set }
84 | @available(macOS 10.10, *)
85 | open var fillShader: SKShader? { get set }
| `- note: mutation of this property is only permitted within the actor
86 | @available(macOS 10.10, *)
87 | open var strokeTexture: SKTexture? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:28:18: warning: main actor-isolated property 'fillTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var fillTexture: Binder<SKTexture?> {
27 | return Binder(self.base) { view, fillTexture in
28 | view.fillTexture = fillTexture
| `- warning: main actor-isolated property 'fillTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKShapeNode:83:14: note: mutation of this property is only permitted within the actor
81 | open var lineLength: CGFloat { get }
82 | @available(macOS 10.10, *)
83 | open var fillTexture: SKTexture? { get set }
| `- note: mutation of this property is only permitted within the actor
84 | @available(macOS 10.10, *)
85 | open var fillShader: SKShader? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:34:18: warning: main actor-isolated property 'glowWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var glowWidth: Binder<CGFloat> {
33 | return Binder(self.base) { view, glowWidth in
34 | view.glowWidth = glowWidth
| `- warning: main actor-isolated property 'glowWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKShapeNode:77:14: note: mutation of this property is only permitted within the actor
75 | open var antialiased: Bool { get set }
76 | open var lineWidth: CGFloat { get set }
77 | open var glowWidth: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
78 | open var lineCap: CGLineCap { get set }
79 | open var lineJoin: CGLineJoin { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:40:18: warning: main actor-isolated property 'isAntialiased' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var isAntialiased: Binder<Bool> {
39 | return Binder(self.base) { view, isAntialiased in
40 | view.isAntialiased = isAntialiased
| `- warning: main actor-isolated property 'isAntialiased' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKShapeNode:73:14: note: mutation of this property is only permitted within the actor
71 | open var fillColor: NSColor { get set }
72 | @MainActor open var blendMode: SKBlendMode { get set }
73 | open var isAntialiased: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
74 | @available(swift, obsoleted: 3, renamed: "isAntialiased")
75 | open var antialiased: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:46:18: warning: main actor-isolated property 'lineCap' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var lineCap: Binder<CGLineCap> {
45 | return Binder(self.base) { view, lineCap in
46 | view.lineCap = lineCap
| `- warning: main actor-isolated property 'lineCap' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
SpriteKit.SKShapeNode:78:14: note: mutation of this property is only permitted within the actor
76 | open var lineWidth: CGFloat { get set }
77 | open var glowWidth: CGFloat { get set }
78 | open var lineCap: CGLineCap { get set }
| `- note: mutation of this property is only permitted within the actor
79 | open var lineJoin: CGLineJoin { get set }
80 | open var miterLimit: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:52:18: warning: main actor-isolated property 'lineJoin' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var lineJoin: Binder<CGLineJoin> {
51 | return Binder(self.base) { view, lineJoin in
52 | view.lineJoin = lineJoin
| `- warning: main actor-isolated property 'lineJoin' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
SpriteKit.SKShapeNode:79:14: note: mutation of this property is only permitted within the actor
77 | open var glowWidth: CGFloat { get set }
78 | open var lineCap: CGLineCap { get set }
79 | open var lineJoin: CGLineJoin { get set }
| `- note: mutation of this property is only permitted within the actor
80 | open var miterLimit: CGFloat { get set }
81 | open var lineLength: CGFloat { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:58:18: warning: main actor-isolated property 'lineWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var lineWidth: Binder<CGFloat> {
57 | return Binder(self.base) { view, lineWidth in
58 | view.lineWidth = lineWidth
| `- warning: main actor-isolated property 'lineWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
SpriteKit.SKShapeNode:76:14: note: mutation of this property is only permitted within the actor
74 | @available(swift, obsoleted: 3, renamed: "isAntialiased")
75 | open var antialiased: Bool { get set }
76 | open var lineWidth: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
77 | open var glowWidth: CGFloat { get set }
78 | open var lineCap: CGLineCap { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:64:18: warning: main actor-isolated property 'miterLimit' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var miterLimit: Binder<CGFloat> {
63 | return Binder(self.base) { view, miterLimit in
64 | view.miterLimit = miterLimit
| `- warning: main actor-isolated property 'miterLimit' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
65 | }
66 | }
SpriteKit.SKShapeNode:80:14: note: mutation of this property is only permitted within the actor
78 | open var lineCap: CGLineCap { get set }
79 | open var lineJoin: CGLineJoin { get set }
80 | open var miterLimit: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
81 | open var lineLength: CGFloat { get }
82 | @available(macOS 10.10, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:70:18: warning: main actor-isolated property 'path' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | public var path: Binder<CGPath?> {
69 | return Binder(self.base) { view, path in
70 | view.path = path
| `- warning: main actor-isolated property 'path' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
71 | }
72 | }
SpriteKit.SKShapeNode:69:14: note: mutation of this property is only permitted within the actor
67 | @available(*, unavailable, renamed: "init(splinePoints:count:)", message: "Not available in Swift")
68 | open class func shapeNodeWithSplinePoints(_ points: UnsafeMutablePointer<CGPoint>, count numPoints: Int) -> Self
69 | open var path: CGPath? { get set }
| `- note: mutation of this property is only permitted within the actor
70 | open var strokeColor: NSColor { get set }
71 | open var fillColor: NSColor { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:76:18: warning: main actor-isolated property 'strokeColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
74 | public var strokeColor: Binder<RSKColor> {
75 | return Binder(self.base) { view, strokeColor in
76 | view.strokeColor = strokeColor
| `- warning: main actor-isolated property 'strokeColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
77 | }
78 | }
SpriteKit.SKShapeNode:70:14: note: mutation of this property is only permitted within the actor
68 | open class func shapeNodeWithSplinePoints(_ points: UnsafeMutablePointer<CGPoint>, count numPoints: Int) -> Self
69 | open var path: CGPath? { get set }
70 | open var strokeColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
71 | open var fillColor: NSColor { get set }
72 | @MainActor open var blendMode: SKBlendMode { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:82:18: warning: main actor-isolated property 'strokeShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
80 | public var strokeShader: Binder<SKShader?> {
81 | return Binder(self.base) { view, strokeShader in
82 | view.strokeShader = strokeShader
| `- warning: main actor-isolated property 'strokeShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
83 | }
84 | }
SpriteKit.SKShapeNode:89:14: note: mutation of this property is only permitted within the actor
87 | open var strokeTexture: SKTexture? { get set }
88 | @available(macOS 10.10, *)
89 | open var strokeShader: SKShader? { get set }
| `- note: mutation of this property is only permitted within the actor
90 | @available(macOS 10.12, *)
91 | open var attributeValues: [String : SKAttributeValue] { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:88:18: warning: main actor-isolated property 'strokeTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
86 | public var strokeTexture: Binder<SKTexture?> {
87 | return Binder(self.base) { view, strokeTexture in
88 | view.strokeTexture = strokeTexture
| `- warning: main actor-isolated property 'strokeTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
89 | }
90 | }
SpriteKit.SKShapeNode:87:14: note: mutation of this property is only permitted within the actor
85 | open var fillShader: SKShader? { get set }
86 | @available(macOS 10.10, *)
87 | open var strokeTexture: SKTexture? { get set }
| `- note: mutation of this property is only permitted within the actor
88 | @available(macOS 10.10, *)
89 | open var strokeShader: SKShader? { get set }
[294/301] Compiling RxSpriteKit SKScene+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:10:18: warning: main actor-isolated property 'anchorPoint' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var anchorPoint: Binder<CGPoint> {
9 | return Binder(self.base) { view, anchorPoint in
10 | view.anchorPoint = anchorPoint
| `- warning: main actor-isolated property 'anchorPoint' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKScene:18:25: note: mutation of this property is only permitted within the actor
16 | @available(macOS 10.10, *)
17 | weak open var delegate: (any SKSceneDelegate)? { get set }
18 | @MainActor open var anchorPoint: CGPoint { get set }
| `- note: mutation of this property is only permitted within the actor
19 | open var physicsWorld: SKPhysicsWorld { get }
20 | weak open var view: SKView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:16:18: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var backgroundColor: Binder<RSKColor> {
15 | return Binder(self.base) { view, backgroundColor in
16 | view.backgroundColor = backgroundColor
| `- warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKScene:15:14: note: mutation of this property is only permitted within the actor
13 | @available(macOS 10.11, *)
14 | open var audioEngine: AVAudioEngine { get }
15 | open var backgroundColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
16 | @available(macOS 10.10, *)
17 | weak open var delegate: (any SKSceneDelegate)? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:22:18: warning: main actor-isolated property 'camera' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var camera: Binder<SKCameraNode?> {
21 | return Binder(self.base) { view, camera in
22 | view.camera = camera
| `- warning: main actor-isolated property 'camera' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
SpriteKit.SKScene:10:19: note: mutation of this property is only permitted within the actor
8 | open var scaleMode: SKSceneScaleMode { get set }
9 | @available(macOS 10.11, *)
10 | weak open var camera: SKCameraNode? { get set }
| `- note: mutation of this property is only permitted within the actor
11 | @available(macOS 10.11, *)
12 | weak open var listener: SKNode? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:28:18: warning: main actor-isolated property 'listener' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var listener: Binder<SKNode?> {
27 | return Binder(self.base) { view, listener in
28 | view.listener = listener
| `- warning: main actor-isolated property 'listener' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKScene:12:19: note: mutation of this property is only permitted within the actor
10 | weak open var camera: SKCameraNode? { get set }
11 | @available(macOS 10.11, *)
12 | weak open var listener: SKNode? { get set }
| `- note: mutation of this property is only permitted within the actor
13 | @available(macOS 10.11, *)
14 | open var audioEngine: AVAudioEngine { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:34:18: warning: main actor-isolated property 'scaleMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var scaleMode: Binder<SKSceneScaleMode> {
33 | return Binder(self.base) { view, scaleMode in
34 | view.scaleMode = scaleMode
| `- warning: main actor-isolated property 'scaleMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKScene:8:14: note: mutation of this property is only permitted within the actor
6 | open func sceneDidLoad()
7 | open var size: CGSize { get set }
8 | open var scaleMode: SKSceneScaleMode { get set }
| `- note: mutation of this property is only permitted within the actor
9 | @available(macOS 10.11, *)
10 | weak open var camera: SKCameraNode? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:40:18: warning: main actor-isolated property 'size' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var size: Binder<CGSize> {
39 | return Binder(self.base) { view, size in
40 | view.size = size
| `- warning: main actor-isolated property 'size' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKScene:7:14: note: mutation of this property is only permitted within the actor
5 | @available(macOS 10.12, *)
6 | open func sceneDidLoad()
7 | open var size: CGSize { get set }
| `- note: mutation of this property is only permitted within the actor
8 | open var scaleMode: SKSceneScaleMode { get set }
9 | @available(macOS 10.11, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:10:18: warning: main actor-isolated property 'blendMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var blendMode: Binder<SKBlendMode> {
9 | return Binder(self.base) { view, blendMode in
10 | view.blendMode = blendMode
| `- warning: main actor-isolated property 'blendMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKShapeNode:72:25: note: mutation of this property is only permitted within the actor
70 | open var strokeColor: NSColor { get set }
71 | open var fillColor: NSColor { get set }
72 | @MainActor open var blendMode: SKBlendMode { get set }
| `- note: mutation of this property is only permitted within the actor
73 | open var isAntialiased: Bool { get set }
74 | @available(swift, obsoleted: 3, renamed: "isAntialiased")
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:16:18: warning: main actor-isolated property 'fillColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var fillColor: Binder<RSKColor> {
15 | return Binder(self.base) { view, fillColor in
16 | view.fillColor = fillColor
| `- warning: main actor-isolated property 'fillColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKShapeNode:71:14: note: mutation of this property is only permitted within the actor
69 | open var path: CGPath? { get set }
70 | open var strokeColor: NSColor { get set }
71 | open var fillColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
72 | @MainActor open var blendMode: SKBlendMode { get set }
73 | open var isAntialiased: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:22:18: warning: main actor-isolated property 'fillShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var fillShader: Binder<SKShader?> {
21 | return Binder(self.base) { view, fillShader in
22 | view.fillShader = fillShader
| `- warning: main actor-isolated property 'fillShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
SpriteKit.SKShapeNode:85:14: note: mutation of this property is only permitted within the actor
83 | open var fillTexture: SKTexture? { get set }
84 | @available(macOS 10.10, *)
85 | open var fillShader: SKShader? { get set }
| `- note: mutation of this property is only permitted within the actor
86 | @available(macOS 10.10, *)
87 | open var strokeTexture: SKTexture? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:28:18: warning: main actor-isolated property 'fillTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var fillTexture: Binder<SKTexture?> {
27 | return Binder(self.base) { view, fillTexture in
28 | view.fillTexture = fillTexture
| `- warning: main actor-isolated property 'fillTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKShapeNode:83:14: note: mutation of this property is only permitted within the actor
81 | open var lineLength: CGFloat { get }
82 | @available(macOS 10.10, *)
83 | open var fillTexture: SKTexture? { get set }
| `- note: mutation of this property is only permitted within the actor
84 | @available(macOS 10.10, *)
85 | open var fillShader: SKShader? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:34:18: warning: main actor-isolated property 'glowWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var glowWidth: Binder<CGFloat> {
33 | return Binder(self.base) { view, glowWidth in
34 | view.glowWidth = glowWidth
| `- warning: main actor-isolated property 'glowWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKShapeNode:77:14: note: mutation of this property is only permitted within the actor
75 | open var antialiased: Bool { get set }
76 | open var lineWidth: CGFloat { get set }
77 | open var glowWidth: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
78 | open var lineCap: CGLineCap { get set }
79 | open var lineJoin: CGLineJoin { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:40:18: warning: main actor-isolated property 'isAntialiased' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var isAntialiased: Binder<Bool> {
39 | return Binder(self.base) { view, isAntialiased in
40 | view.isAntialiased = isAntialiased
| `- warning: main actor-isolated property 'isAntialiased' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKShapeNode:73:14: note: mutation of this property is only permitted within the actor
71 | open var fillColor: NSColor { get set }
72 | @MainActor open var blendMode: SKBlendMode { get set }
73 | open var isAntialiased: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
74 | @available(swift, obsoleted: 3, renamed: "isAntialiased")
75 | open var antialiased: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:46:18: warning: main actor-isolated property 'lineCap' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var lineCap: Binder<CGLineCap> {
45 | return Binder(self.base) { view, lineCap in
46 | view.lineCap = lineCap
| `- warning: main actor-isolated property 'lineCap' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
SpriteKit.SKShapeNode:78:14: note: mutation of this property is only permitted within the actor
76 | open var lineWidth: CGFloat { get set }
77 | open var glowWidth: CGFloat { get set }
78 | open var lineCap: CGLineCap { get set }
| `- note: mutation of this property is only permitted within the actor
79 | open var lineJoin: CGLineJoin { get set }
80 | open var miterLimit: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:52:18: warning: main actor-isolated property 'lineJoin' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var lineJoin: Binder<CGLineJoin> {
51 | return Binder(self.base) { view, lineJoin in
52 | view.lineJoin = lineJoin
| `- warning: main actor-isolated property 'lineJoin' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
SpriteKit.SKShapeNode:79:14: note: mutation of this property is only permitted within the actor
77 | open var glowWidth: CGFloat { get set }
78 | open var lineCap: CGLineCap { get set }
79 | open var lineJoin: CGLineJoin { get set }
| `- note: mutation of this property is only permitted within the actor
80 | open var miterLimit: CGFloat { get set }
81 | open var lineLength: CGFloat { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:58:18: warning: main actor-isolated property 'lineWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var lineWidth: Binder<CGFloat> {
57 | return Binder(self.base) { view, lineWidth in
58 | view.lineWidth = lineWidth
| `- warning: main actor-isolated property 'lineWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
SpriteKit.SKShapeNode:76:14: note: mutation of this property is only permitted within the actor
74 | @available(swift, obsoleted: 3, renamed: "isAntialiased")
75 | open var antialiased: Bool { get set }
76 | open var lineWidth: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
77 | open var glowWidth: CGFloat { get set }
78 | open var lineCap: CGLineCap { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:64:18: warning: main actor-isolated property 'miterLimit' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var miterLimit: Binder<CGFloat> {
63 | return Binder(self.base) { view, miterLimit in
64 | view.miterLimit = miterLimit
| `- warning: main actor-isolated property 'miterLimit' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
65 | }
66 | }
SpriteKit.SKShapeNode:80:14: note: mutation of this property is only permitted within the actor
78 | open var lineCap: CGLineCap { get set }
79 | open var lineJoin: CGLineJoin { get set }
80 | open var miterLimit: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
81 | open var lineLength: CGFloat { get }
82 | @available(macOS 10.10, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:70:18: warning: main actor-isolated property 'path' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | public var path: Binder<CGPath?> {
69 | return Binder(self.base) { view, path in
70 | view.path = path
| `- warning: main actor-isolated property 'path' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
71 | }
72 | }
SpriteKit.SKShapeNode:69:14: note: mutation of this property is only permitted within the actor
67 | @available(*, unavailable, renamed: "init(splinePoints:count:)", message: "Not available in Swift")
68 | open class func shapeNodeWithSplinePoints(_ points: UnsafeMutablePointer<CGPoint>, count numPoints: Int) -> Self
69 | open var path: CGPath? { get set }
| `- note: mutation of this property is only permitted within the actor
70 | open var strokeColor: NSColor { get set }
71 | open var fillColor: NSColor { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:76:18: warning: main actor-isolated property 'strokeColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
74 | public var strokeColor: Binder<RSKColor> {
75 | return Binder(self.base) { view, strokeColor in
76 | view.strokeColor = strokeColor
| `- warning: main actor-isolated property 'strokeColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
77 | }
78 | }
SpriteKit.SKShapeNode:70:14: note: mutation of this property is only permitted within the actor
68 | open class func shapeNodeWithSplinePoints(_ points: UnsafeMutablePointer<CGPoint>, count numPoints: Int) -> Self
69 | open var path: CGPath? { get set }
70 | open var strokeColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
71 | open var fillColor: NSColor { get set }
72 | @MainActor open var blendMode: SKBlendMode { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:82:18: warning: main actor-isolated property 'strokeShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
80 | public var strokeShader: Binder<SKShader?> {
81 | return Binder(self.base) { view, strokeShader in
82 | view.strokeShader = strokeShader
| `- warning: main actor-isolated property 'strokeShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
83 | }
84 | }
SpriteKit.SKShapeNode:89:14: note: mutation of this property is only permitted within the actor
87 | open var strokeTexture: SKTexture? { get set }
88 | @available(macOS 10.10, *)
89 | open var strokeShader: SKShader? { get set }
| `- note: mutation of this property is only permitted within the actor
90 | @available(macOS 10.12, *)
91 | open var attributeValues: [String : SKAttributeValue] { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:88:18: warning: main actor-isolated property 'strokeTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
86 | public var strokeTexture: Binder<SKTexture?> {
87 | return Binder(self.base) { view, strokeTexture in
88 | view.strokeTexture = strokeTexture
| `- warning: main actor-isolated property 'strokeTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
89 | }
90 | }
SpriteKit.SKShapeNode:87:14: note: mutation of this property is only permitted within the actor
85 | open var fillShader: SKShader? { get set }
86 | @available(macOS 10.10, *)
87 | open var strokeTexture: SKTexture? { get set }
| `- note: mutation of this property is only permitted within the actor
88 | @available(macOS 10.10, *)
89 | open var strokeShader: SKShader? { get set }
[295/301] Compiling RxSpriteKit SKShapeNode+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:10:18: warning: main actor-isolated property 'anchorPoint' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var anchorPoint: Binder<CGPoint> {
9 | return Binder(self.base) { view, anchorPoint in
10 | view.anchorPoint = anchorPoint
| `- warning: main actor-isolated property 'anchorPoint' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKScene:18:25: note: mutation of this property is only permitted within the actor
16 | @available(macOS 10.10, *)
17 | weak open var delegate: (any SKSceneDelegate)? { get set }
18 | @MainActor open var anchorPoint: CGPoint { get set }
| `- note: mutation of this property is only permitted within the actor
19 | open var physicsWorld: SKPhysicsWorld { get }
20 | weak open var view: SKView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:16:18: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var backgroundColor: Binder<RSKColor> {
15 | return Binder(self.base) { view, backgroundColor in
16 | view.backgroundColor = backgroundColor
| `- warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKScene:15:14: note: mutation of this property is only permitted within the actor
13 | @available(macOS 10.11, *)
14 | open var audioEngine: AVAudioEngine { get }
15 | open var backgroundColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
16 | @available(macOS 10.10, *)
17 | weak open var delegate: (any SKSceneDelegate)? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:22:18: warning: main actor-isolated property 'camera' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var camera: Binder<SKCameraNode?> {
21 | return Binder(self.base) { view, camera in
22 | view.camera = camera
| `- warning: main actor-isolated property 'camera' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
SpriteKit.SKScene:10:19: note: mutation of this property is only permitted within the actor
8 | open var scaleMode: SKSceneScaleMode { get set }
9 | @available(macOS 10.11, *)
10 | weak open var camera: SKCameraNode? { get set }
| `- note: mutation of this property is only permitted within the actor
11 | @available(macOS 10.11, *)
12 | weak open var listener: SKNode? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:28:18: warning: main actor-isolated property 'listener' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var listener: Binder<SKNode?> {
27 | return Binder(self.base) { view, listener in
28 | view.listener = listener
| `- warning: main actor-isolated property 'listener' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKScene:12:19: note: mutation of this property is only permitted within the actor
10 | weak open var camera: SKCameraNode? { get set }
11 | @available(macOS 10.11, *)
12 | weak open var listener: SKNode? { get set }
| `- note: mutation of this property is only permitted within the actor
13 | @available(macOS 10.11, *)
14 | open var audioEngine: AVAudioEngine { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:34:18: warning: main actor-isolated property 'scaleMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var scaleMode: Binder<SKSceneScaleMode> {
33 | return Binder(self.base) { view, scaleMode in
34 | view.scaleMode = scaleMode
| `- warning: main actor-isolated property 'scaleMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKScene:8:14: note: mutation of this property is only permitted within the actor
6 | open func sceneDidLoad()
7 | open var size: CGSize { get set }
8 | open var scaleMode: SKSceneScaleMode { get set }
| `- note: mutation of this property is only permitted within the actor
9 | @available(macOS 10.11, *)
10 | weak open var camera: SKCameraNode? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKScene+Binder.swift:40:18: warning: main actor-isolated property 'size' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var size: Binder<CGSize> {
39 | return Binder(self.base) { view, size in
40 | view.size = size
| `- warning: main actor-isolated property 'size' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKScene:7:14: note: mutation of this property is only permitted within the actor
5 | @available(macOS 10.12, *)
6 | open func sceneDidLoad()
7 | open var size: CGSize { get set }
| `- note: mutation of this property is only permitted within the actor
8 | open var scaleMode: SKSceneScaleMode { get set }
9 | @available(macOS 10.11, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:10:18: warning: main actor-isolated property 'blendMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var blendMode: Binder<SKBlendMode> {
9 | return Binder(self.base) { view, blendMode in
10 | view.blendMode = blendMode
| `- warning: main actor-isolated property 'blendMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKShapeNode:72:25: note: mutation of this property is only permitted within the actor
70 | open var strokeColor: NSColor { get set }
71 | open var fillColor: NSColor { get set }
72 | @MainActor open var blendMode: SKBlendMode { get set }
| `- note: mutation of this property is only permitted within the actor
73 | open var isAntialiased: Bool { get set }
74 | @available(swift, obsoleted: 3, renamed: "isAntialiased")
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:16:18: warning: main actor-isolated property 'fillColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var fillColor: Binder<RSKColor> {
15 | return Binder(self.base) { view, fillColor in
16 | view.fillColor = fillColor
| `- warning: main actor-isolated property 'fillColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
SpriteKit.SKShapeNode:71:14: note: mutation of this property is only permitted within the actor
69 | open var path: CGPath? { get set }
70 | open var strokeColor: NSColor { get set }
71 | open var fillColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
72 | @MainActor open var blendMode: SKBlendMode { get set }
73 | open var isAntialiased: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:22:18: warning: main actor-isolated property 'fillShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var fillShader: Binder<SKShader?> {
21 | return Binder(self.base) { view, fillShader in
22 | view.fillShader = fillShader
| `- warning: main actor-isolated property 'fillShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
SpriteKit.SKShapeNode:85:14: note: mutation of this property is only permitted within the actor
83 | open var fillTexture: SKTexture? { get set }
84 | @available(macOS 10.10, *)
85 | open var fillShader: SKShader? { get set }
| `- note: mutation of this property is only permitted within the actor
86 | @available(macOS 10.10, *)
87 | open var strokeTexture: SKTexture? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:28:18: warning: main actor-isolated property 'fillTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var fillTexture: Binder<SKTexture?> {
27 | return Binder(self.base) { view, fillTexture in
28 | view.fillTexture = fillTexture
| `- warning: main actor-isolated property 'fillTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 | }
SpriteKit.SKShapeNode:83:14: note: mutation of this property is only permitted within the actor
81 | open var lineLength: CGFloat { get }
82 | @available(macOS 10.10, *)
83 | open var fillTexture: SKTexture? { get set }
| `- note: mutation of this property is only permitted within the actor
84 | @available(macOS 10.10, *)
85 | open var fillShader: SKShader? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:34:18: warning: main actor-isolated property 'glowWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var glowWidth: Binder<CGFloat> {
33 | return Binder(self.base) { view, glowWidth in
34 | view.glowWidth = glowWidth
| `- warning: main actor-isolated property 'glowWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
SpriteKit.SKShapeNode:77:14: note: mutation of this property is only permitted within the actor
75 | open var antialiased: Bool { get set }
76 | open var lineWidth: CGFloat { get set }
77 | open var glowWidth: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
78 | open var lineCap: CGLineCap { get set }
79 | open var lineJoin: CGLineJoin { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:40:18: warning: main actor-isolated property 'isAntialiased' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var isAntialiased: Binder<Bool> {
39 | return Binder(self.base) { view, isAntialiased in
40 | view.isAntialiased = isAntialiased
| `- warning: main actor-isolated property 'isAntialiased' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
SpriteKit.SKShapeNode:73:14: note: mutation of this property is only permitted within the actor
71 | open var fillColor: NSColor { get set }
72 | @MainActor open var blendMode: SKBlendMode { get set }
73 | open var isAntialiased: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
74 | @available(swift, obsoleted: 3, renamed: "isAntialiased")
75 | open var antialiased: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:46:18: warning: main actor-isolated property 'lineCap' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var lineCap: Binder<CGLineCap> {
45 | return Binder(self.base) { view, lineCap in
46 | view.lineCap = lineCap
| `- warning: main actor-isolated property 'lineCap' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
SpriteKit.SKShapeNode:78:14: note: mutation of this property is only permitted within the actor
76 | open var lineWidth: CGFloat { get set }
77 | open var glowWidth: CGFloat { get set }
78 | open var lineCap: CGLineCap { get set }
| `- note: mutation of this property is only permitted within the actor
79 | open var lineJoin: CGLineJoin { get set }
80 | open var miterLimit: CGFloat { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:52:18: warning: main actor-isolated property 'lineJoin' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var lineJoin: Binder<CGLineJoin> {
51 | return Binder(self.base) { view, lineJoin in
52 | view.lineJoin = lineJoin
| `- warning: main actor-isolated property 'lineJoin' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
SpriteKit.SKShapeNode:79:14: note: mutation of this property is only permitted within the actor
77 | open var glowWidth: CGFloat { get set }
78 | open var lineCap: CGLineCap { get set }
79 | open var lineJoin: CGLineJoin { get set }
| `- note: mutation of this property is only permitted within the actor
80 | open var miterLimit: CGFloat { get set }
81 | open var lineLength: CGFloat { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:58:18: warning: main actor-isolated property 'lineWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var lineWidth: Binder<CGFloat> {
57 | return Binder(self.base) { view, lineWidth in
58 | view.lineWidth = lineWidth
| `- warning: main actor-isolated property 'lineWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
SpriteKit.SKShapeNode:76:14: note: mutation of this property is only permitted within the actor
74 | @available(swift, obsoleted: 3, renamed: "isAntialiased")
75 | open var antialiased: Bool { get set }
76 | open var lineWidth: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
77 | open var glowWidth: CGFloat { get set }
78 | open var lineCap: CGLineCap { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:64:18: warning: main actor-isolated property 'miterLimit' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var miterLimit: Binder<CGFloat> {
63 | return Binder(self.base) { view, miterLimit in
64 | view.miterLimit = miterLimit
| `- warning: main actor-isolated property 'miterLimit' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
65 | }
66 | }
SpriteKit.SKShapeNode:80:14: note: mutation of this property is only permitted within the actor
78 | open var lineCap: CGLineCap { get set }
79 | open var lineJoin: CGLineJoin { get set }
80 | open var miterLimit: CGFloat { get set }
| `- note: mutation of this property is only permitted within the actor
81 | open var lineLength: CGFloat { get }
82 | @available(macOS 10.10, *)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:70:18: warning: main actor-isolated property 'path' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | public var path: Binder<CGPath?> {
69 | return Binder(self.base) { view, path in
70 | view.path = path
| `- warning: main actor-isolated property 'path' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
71 | }
72 | }
SpriteKit.SKShapeNode:69:14: note: mutation of this property is only permitted within the actor
67 | @available(*, unavailable, renamed: "init(splinePoints:count:)", message: "Not available in Swift")
68 | open class func shapeNodeWithSplinePoints(_ points: UnsafeMutablePointer<CGPoint>, count numPoints: Int) -> Self
69 | open var path: CGPath? { get set }
| `- note: mutation of this property is only permitted within the actor
70 | open var strokeColor: NSColor { get set }
71 | open var fillColor: NSColor { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:76:18: warning: main actor-isolated property 'strokeColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
74 | public var strokeColor: Binder<RSKColor> {
75 | return Binder(self.base) { view, strokeColor in
76 | view.strokeColor = strokeColor
| `- warning: main actor-isolated property 'strokeColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
77 | }
78 | }
SpriteKit.SKShapeNode:70:14: note: mutation of this property is only permitted within the actor
68 | open class func shapeNodeWithSplinePoints(_ points: UnsafeMutablePointer<CGPoint>, count numPoints: Int) -> Self
69 | open var path: CGPath? { get set }
70 | open var strokeColor: NSColor { get set }
| `- note: mutation of this property is only permitted within the actor
71 | open var fillColor: NSColor { get set }
72 | @MainActor open var blendMode: SKBlendMode { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:82:18: warning: main actor-isolated property 'strokeShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
80 | public var strokeShader: Binder<SKShader?> {
81 | return Binder(self.base) { view, strokeShader in
82 | view.strokeShader = strokeShader
| `- warning: main actor-isolated property 'strokeShader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
83 | }
84 | }
SpriteKit.SKShapeNode:89:14: note: mutation of this property is only permitted within the actor
87 | open var strokeTexture: SKTexture? { get set }
88 | @available(macOS 10.10, *)
89 | open var strokeShader: SKShader? { get set }
| `- note: mutation of this property is only permitted within the actor
90 | @available(macOS 10.12, *)
91 | open var attributeValues: [String : SKAttributeValue] { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKShapeNode+Binder.swift:88:18: warning: main actor-isolated property 'strokeTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
86 | public var strokeTexture: Binder<SKTexture?> {
87 | return Binder(self.base) { view, strokeTexture in
88 | view.strokeTexture = strokeTexture
| `- warning: main actor-isolated property 'strokeTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
89 | }
90 | }
SpriteKit.SKShapeNode:87:14: note: mutation of this property is only permitted within the actor
85 | open var fillShader: SKShader? { get set }
86 | @available(macOS 10.10, *)
87 | open var strokeTexture: SKTexture? { get set }
| `- note: mutation of this property is only permitted within the actor
88 | @available(macOS 10.10, *)
89 | open var strokeShader: SKShader? { get set }
[296/301] Compiling RxSpriteKit SKScene+LifeCycle.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Utilities/Aliases.swift:8:33: warning: cannot use class 'NSColor' here; 'AppKit' was not imported by this file
6 | #else
7 | import Cocoa
8 | public typealias RSKColor = NSColor
| `- warning: cannot use class 'NSColor' here; 'AppKit' was not imported by this file
9 | #endif
10 | public typealias RSKLineBreakMode = NSLineBreakMode
AppKit.NSColor:1:12: note: type declared here
1 | open class NSColor : NSObject, NSCopying, NSSecureCoding, NSPasteboardReading, NSPasteboardWriting, @unchecked Sendable {
| `- note: type declared here
2 | public init()
3 | public init?(coder: NSCoder)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Utilities/Aliases.swift:10:37: warning: cannot use enum 'NSLineBreakMode' here; 'AppKit' was not imported by this file
8 | public typealias RSKColor = NSColor
9 | #endif
10 | public typealias RSKLineBreakMode = NSLineBreakMode
| `- warning: cannot use enum 'NSLineBreakMode' here; 'AppKit' was not imported by this file
11 |
AppKit.NSLineBreakMode:2:13: note: type declared here
1 | @available(macOS 10.0, *)
2 | public enum NSLineBreakMode : UInt, @unchecked Sendable {
| `- note: type declared here
3 | public init?(rawValue: UInt)
4 | public var rawValue: UInt { get }
[297/301] Compiling RxSpriteKit Aliases.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Utilities/Aliases.swift:8:33: warning: cannot use class 'NSColor' here; 'AppKit' was not imported by this file
6 | #else
7 | import Cocoa
8 | public typealias RSKColor = NSColor
| `- warning: cannot use class 'NSColor' here; 'AppKit' was not imported by this file
9 | #endif
10 | public typealias RSKLineBreakMode = NSLineBreakMode
AppKit.NSColor:1:12: note: type declared here
1 | open class NSColor : NSObject, NSCopying, NSSecureCoding, NSPasteboardReading, NSPasteboardWriting, @unchecked Sendable {
| `- note: type declared here
2 | public init()
3 | public init?(coder: NSCoder)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Utilities/Aliases.swift:10:37: warning: cannot use enum 'NSLineBreakMode' here; 'AppKit' was not imported by this file
8 | public typealias RSKColor = NSColor
9 | #endif
10 | public typealias RSKLineBreakMode = NSLineBreakMode
| `- warning: cannot use enum 'NSLineBreakMode' here; 'AppKit' was not imported by this file
11 |
AppKit.NSLineBreakMode:2:13: note: type declared here
1 | @available(macOS 10.0, *)
2 | public enum NSLineBreakMode : UInt, @unchecked Sendable {
| `- note: type declared here
3 | public init?(rawValue: UInt)
4 | public var rawValue: UInt { get }
[298/301] Emitting module RxSpriteKit
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:9:36: warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
7 |
8 | extension Reactive where Base: NSResponder {
9 | public var keyUp: ControlEvent<NSEvent> {
| `- warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
10 | let source = self.methodInvoked(#selector(Base.keyUp(with:))).map { $0.first as! NSEvent }
11 | return ControlEvent(events: source)
AppKit.NSEvent:1:12: note: type declared here
1 | open class NSEvent : NSObject, NSCopying, NSCoding {
| `- note: type declared here
2 | open var type: NSEvent.EventType { get }
3 | open var modifierFlags: NSEvent.ModifierFlags { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:14:38: warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
12 | }
13 |
14 | public var keyDown: ControlEvent<NSEvent> {
| `- warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
15 | let source = self.methodInvoked(#selector(Base.keyDown(with:))).map { $0.first as! NSEvent }
16 | return ControlEvent(events: source)
AppKit.NSEvent:1:12: note: type declared here
1 | open class NSEvent : NSObject, NSCopying, NSCoding {
| `- note: type declared here
2 | open var type: NSEvent.EventType { get }
3 | open var modifierFlags: NSEvent.ModifierFlags { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:19:40: warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
17 | }
18 |
19 | public var mouseDown: ControlEvent<NSEvent> {
| `- warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
20 | let source = self.methodInvoked(#selector(Base.mouseDown(with:))).map { $0.first as! NSEvent }
21 | return ControlEvent(events: source)
AppKit.NSEvent:1:12: note: type declared here
1 | open class NSEvent : NSObject, NSCopying, NSCoding {
| `- note: type declared here
2 | open var type: NSEvent.EventType { get }
3 | open var modifierFlags: NSEvent.ModifierFlags { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:24:43: warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
22 | }
23 |
24 | public var mouseDragged: ControlEvent<NSEvent> {
| `- warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
25 | let source = self.methodInvoked(#selector(Base.mouseDragged(with:))).map { $0.first as! NSEvent }
26 | return ControlEvent(events: source)
AppKit.NSEvent:1:12: note: type declared here
1 | open class NSEvent : NSObject, NSCopying, NSCoding {
| `- note: type declared here
2 | open var type: NSEvent.EventType { get }
3 | open var modifierFlags: NSEvent.ModifierFlags { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:29:38: warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
27 | }
28 |
29 | public var mouseUp: ControlEvent<NSEvent> {
| `- warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
30 | let source = self.methodInvoked(#selector(Base.mouseUp(with:))).map { $0.first as! NSEvent }
31 | return ControlEvent(events: source)
AppKit.NSEvent:1:12: note: type declared here
1 | open class NSEvent : NSObject, NSCopying, NSCoding {
| `- note: type declared here
2 | open var type: NSEvent.EventType { get }
3 | open var modifierFlags: NSEvent.ModifierFlags { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:34:41: warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
32 | }
33 |
34 | public var mouseMoved: ControlEvent<NSEvent> {
| `- warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
35 | let source = self.methodInvoked(#selector(Base.mouseMoved(with:))).map { $0.first as! NSEvent }
36 | return ControlEvent(events: source)
AppKit.NSEvent:1:12: note: type declared here
1 | open class NSEvent : NSObject, NSCopying, NSCoding {
| `- note: type declared here
2 | open var type: NSEvent.EventType { get }
3 | open var modifierFlags: NSEvent.ModifierFlags { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:39:43: warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
37 | }
38 |
39 | public var mouseEntered: ControlEvent<NSEvent> {
| `- warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
40 | let source = self.methodInvoked(#selector(Base.mouseEntered(with:))).map { $0.first as! NSEvent }
41 | return ControlEvent(events: source)
AppKit.NSEvent:1:12: note: type declared here
1 | open class NSEvent : NSObject, NSCopying, NSCoding {
| `- note: type declared here
2 | open var type: NSEvent.EventType { get }
3 | open var modifierFlags: NSEvent.ModifierFlags { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:44:40: warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
42 | }
43 |
44 | public var mouseExit: ControlEvent<NSEvent> {
| `- warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
45 | let source = self.methodInvoked(#selector(Base.mouseExited(with:))).map { $0.first as! NSEvent }
46 | return ControlEvent(events: source)
AppKit.NSEvent:1:12: note: type declared here
1 | open class NSEvent : NSObject, NSCopying, NSCoding {
| `- note: type declared here
2 | open var type: NSEvent.EventType { get }
3 | open var modifierFlags: NSEvent.ModifierFlags { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:49:45: warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
47 | }
48 |
49 | public var rightMouseDown: ControlEvent<NSEvent> {
| `- warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
50 | let source = self.methodInvoked(#selector(Base.rightMouseDown(with:))).map { $0.first as! NSEvent }
51 | return ControlEvent(events: source)
AppKit.NSEvent:1:12: note: type declared here
1 | open class NSEvent : NSObject, NSCopying, NSCoding {
| `- note: type declared here
2 | open var type: NSEvent.EventType { get }
3 | open var modifierFlags: NSEvent.ModifierFlags { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:54:43: warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
52 | }
53 |
54 | public var rightMouseUp: ControlEvent<NSEvent> {
| `- warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
55 | let source = self.methodInvoked(#selector(Base.rightMouseUp(with:))).map { $0.first as! NSEvent }
56 | return ControlEvent(events: source)
AppKit.NSEvent:1:12: note: type declared here
1 | open class NSEvent : NSObject, NSCopying, NSCoding {
| `- note: type declared here
2 | open var type: NSEvent.EventType { get }
3 | open var modifierFlags: NSEvent.ModifierFlags { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:59:48: warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
57 | }
58 |
59 | public var rightMouseDragged: ControlEvent<NSEvent> {
| `- warning: cannot use class 'NSEvent' here; 'AppKit' was not imported by this file
60 | let source = self.methodInvoked(#selector(Base.rightMouseDragged(with:))).map { $0.first as! NSEvent }
61 | return ControlEvent(events: source)
AppKit.NSEvent:1:12: note: type declared here
1 | open class NSEvent : NSObject, NSCopying, NSCoding {
| `- note: type declared here
2 | open var type: NSEvent.EventType { get }
3 | open var modifierFlags: NSEvent.ModifierFlags { get }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Input/macOS/NSResponder+Rx.swift:8:32: warning: cannot use class 'NSResponder' in an extension with public or '@usableFromInline' members; 'AppKit' was not imported by this file
6 | import RxCocoa
7 |
8 | extension Reactive where Base: NSResponder {
| `- warning: cannot use class 'NSResponder' in an extension with public or '@usableFromInline' members; 'AppKit' was not imported by this file
9 | public var keyUp: ControlEvent<NSEvent> {
10 | let source = self.methodInvoked(#selector(Base.keyUp(with:))).map { $0.first as! NSEvent }
AppKit.NSResponder:1:23: note: type declared here
1 | @MainActor open class NSResponder : NSObject, NSCoding {
| `- note: type declared here
2 | public init()
3 | public init?(coder: NSCoder)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Utilities/Aliases.swift:8:33: warning: cannot use class 'NSColor' here; 'AppKit' was not imported by this file
6 | #else
7 | import Cocoa
8 | public typealias RSKColor = NSColor
| `- warning: cannot use class 'NSColor' here; 'AppKit' was not imported by this file
9 | #endif
10 | public typealias RSKLineBreakMode = NSLineBreakMode
AppKit.NSColor:1:12: note: type declared here
1 | open class NSColor : NSObject, NSCopying, NSSecureCoding, NSPasteboardReading, NSPasteboardWriting, @unchecked Sendable {
| `- note: type declared here
2 | public init()
3 | public init?(coder: NSCoder)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Utilities/Aliases.swift:10:37: warning: cannot use enum 'NSLineBreakMode' here; 'AppKit' was not imported by this file
8 | public typealias RSKColor = NSColor
9 | #endif
10 | public typealias RSKLineBreakMode = NSLineBreakMode
| `- warning: cannot use enum 'NSLineBreakMode' here; 'AppKit' was not imported by this file
11 |
AppKit.NSLineBreakMode:2:13: note: type declared here
1 | @available(macOS 10.0, *)
2 | public enum NSLineBreakMode : UInt, @unchecked Sendable {
| `- note: type declared here
3 | public init?(rawValue: UInt)
4 | public var rawValue: UInt { get }
[299/301] Compiling RxSpriteKit SK3DNode+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:11:18: warning: main actor-isolated property 'autoenablesDefaultLighting' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
9 | public var autoenablesDefaultLighting: Binder<Bool> {
10 | return Binder(self.base) { view, autoenablesDefaultLighting in
11 | view.autoenablesDefaultLighting = autoenablesDefaultLighting
| `- warning: main actor-isolated property 'autoenablesDefaultLighting' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
12 | }
13 | }
SpriteKit.SK3DNode:18:25: note: mutation of this property is only permitted within the actor
16 | open var loops: Bool { get set }
17 | open var pointOfView: SCNNode? { get set }
18 | @MainActor open var autoenablesDefaultLighting: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
19 | public convenience init()
20 | public convenience init?(fileNamed filename: String)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:17:18: warning: main actor-isolated property 'isPlaying' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
15 | public var isPlaying: Binder<Bool> {
16 | return Binder(self.base) { view, isPlaying in
17 | view.isPlaying = isPlaying
| `- warning: main actor-isolated property 'isPlaying' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 | }
SpriteKit.SK3DNode:13:14: note: mutation of this property is only permitted within the actor
11 | open func projectPoint(_ point: vector_float3) -> vector_float3
12 | open func unprojectPoint(_ point: vector_float3) -> vector_float3
13 | open var isPlaying: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
14 | @available(swift, obsoleted: 3, renamed: "isPlaying")
15 | open var playing: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:23:18: warning: main actor-isolated property 'loops' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
21 | public var loops: Binder<Bool> {
22 | return Binder(self.base) { view, loops in
23 | view.loops = loops
| `- warning: main actor-isolated property 'loops' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
24 | }
25 | }
SpriteKit.SK3DNode:16:14: note: mutation of this property is only permitted within the actor
14 | @available(swift, obsoleted: 3, renamed: "isPlaying")
15 | open var playing: Bool { get set }
16 | open var loops: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
17 | open var pointOfView: SCNNode? { get set }
18 | @MainActor open var autoenablesDefaultLighting: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:29:18: warning: main actor-isolated property 'pointOfView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
27 | public var pointOfView: Binder<SCNNode?> {
28 | return Binder(self.base) { view, pointOfView in
29 | view.pointOfView = pointOfView
| `- warning: main actor-isolated property 'pointOfView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
30 | }
31 | }
SpriteKit.SK3DNode:17:14: note: mutation of this property is only permitted within the actor
15 | open var playing: Bool { get set }
16 | open var loops: Bool { get set }
17 | open var pointOfView: SCNNode? { get set }
| `- note: mutation of this property is only permitted within the actor
18 | @MainActor open var autoenablesDefaultLighting: Bool { get set }
19 | public convenience init()
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:35:18: warning: main actor-isolated property 'sceneTime' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
33 | public var sceneTime: Binder<TimeInterval> {
34 | return Binder(self.base) { view, sceneTime in
35 | view.sceneTime = sceneTime
| `- warning: main actor-isolated property 'sceneTime' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
36 | }
37 | }
SpriteKit.SK3DNode:9:14: note: mutation of this property is only permitted within the actor
7 | open var viewportSize: CGSize { get set }
8 | open var scnScene: SCNScene? { get set }
9 | open var sceneTime: TimeInterval { get set }
| `- note: mutation of this property is only permitted within the actor
10 | open func hitTest(_ point: CGPoint, options: [String : Any]? = nil) -> [SCNHitTestResult]
11 | open func projectPoint(_ point: vector_float3) -> vector_float3
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:41:18: warning: main actor-isolated property 'scnScene' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
39 | public var scnScene: Binder<SCNScene?> {
40 | return Binder(self.base) { view, scnScene in
41 | view.scnScene = scnScene
| `- warning: main actor-isolated property 'scnScene' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
42 | }
43 | }
SpriteKit.SK3DNode:8:14: note: mutation of this property is only permitted within the actor
6 | open class func nodeWithViewportSize(_ viewportSize: CGSize) -> Self
7 | open var viewportSize: CGSize { get set }
8 | open var scnScene: SCNScene? { get set }
| `- note: mutation of this property is only permitted within the actor
9 | open var sceneTime: TimeInterval { get set }
10 | open func hitTest(_ point: CGPoint, options: [String : Any]? = nil) -> [SCNHitTestResult]
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:47:18: warning: main actor-isolated property 'viewportSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
45 | public var viewportSize: Binder<CGSize> {
46 | return Binder(self.base) { view, viewportSize in
47 | view.viewportSize = viewportSize
| `- warning: main actor-isolated property 'viewportSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
48 | }
49 | }
SpriteKit.SK3DNode:7:14: note: mutation of this property is only permitted within the actor
5 | @available(*, unavailable, renamed: "init(viewportSize:)", message: "Not available in Swift")
6 | open class func nodeWithViewportSize(_ viewportSize: CGSize) -> Self
7 | open var viewportSize: CGSize { get set }
| `- note: mutation of this property is only permitted within the actor
8 | open var scnScene: SCNScene? { get set }
9 | open var sceneTime: TimeInterval { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKAudioNode+Binder.swift:11:18: warning: main actor-isolated property 'autoplayLooped' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
9 | public var autoplayLooped: Binder<Bool> {
10 | return Binder(self.base) { view, autoplayLooped in
11 | view.autoplayLooped = autoplayLooped
| `- warning: main actor-isolated property 'autoplayLooped' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
12 | }
13 | }
SpriteKit.SKAudioNode:12:25: note: mutation of this property is only permitted within the actor
10 | public convenience init(URL url: URL)
11 | open var avAudioNode: AVAudioNode? { get set }
12 | @MainActor open var autoplayLooped: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
13 | open var isPositional: Bool { get set }
14 | @available(swift, obsoleted: 3, renamed: "isPositional")
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKAudioNode+Binder.swift:17:18: warning: main actor-isolated property 'avAudioNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
15 | public var avAudioNode: Binder<AVAudioNode?> {
16 | return Binder(self.base) { view, avAudioNode in
17 | view.avAudioNode = avAudioNode
| `- warning: main actor-isolated property 'avAudioNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 | }
SpriteKit.SKAudioNode:11:14: note: mutation of this property is only permitted within the actor
9 | @available(swift, obsoleted: 3, renamed: "init(url:)")
10 | public convenience init(URL url: URL)
11 | open var avAudioNode: AVAudioNode? { get set }
| `- note: mutation of this property is only permitted within the actor
12 | @MainActor open var autoplayLooped: Bool { get set }
13 | open var isPositional: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKAudioNode+Binder.swift:23:18: warning: main actor-isolated property 'isPositional' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
21 | public var isPositional: Binder<Bool> {
22 | return Binder(self.base) { view, isPositional in
23 | view.isPositional = isPositional
| `- warning: main actor-isolated property 'isPositional' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
24 | }
25 | }
SpriteKit.SKAudioNode:13:14: note: mutation of this property is only permitted within the actor
11 | open var avAudioNode: AVAudioNode? { get set }
12 | @MainActor open var autoplayLooped: Bool { get set }
13 | open var isPositional: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
14 | @available(swift, obsoleted: 3, renamed: "isPositional")
15 | open var positional: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKCropNode+Binder.swift:10:18: warning: main actor-isolated property 'maskNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var maskNode: Binder<SKNode?> {
9 | return Binder(self.base) { view, maskNode in
10 | view.maskNode = maskNode
| `- warning: main actor-isolated property 'maskNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKCropNode:2:25: note: mutation of this property is only permitted within the actor
1 | @MainActor open class SKCropNode : SKNode {
2 | @MainActor open var maskNode: SKNode? { get set }
| `- note: mutation of this property is only permitted within the actor
3 | public init()
4 | public init?(coder aDecoder: NSCoder)
[300/301] Compiling RxSpriteKit SKAudioNode+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:11:18: warning: main actor-isolated property 'autoenablesDefaultLighting' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
9 | public var autoenablesDefaultLighting: Binder<Bool> {
10 | return Binder(self.base) { view, autoenablesDefaultLighting in
11 | view.autoenablesDefaultLighting = autoenablesDefaultLighting
| `- warning: main actor-isolated property 'autoenablesDefaultLighting' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
12 | }
13 | }
SpriteKit.SK3DNode:18:25: note: mutation of this property is only permitted within the actor
16 | open var loops: Bool { get set }
17 | open var pointOfView: SCNNode? { get set }
18 | @MainActor open var autoenablesDefaultLighting: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
19 | public convenience init()
20 | public convenience init?(fileNamed filename: String)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:17:18: warning: main actor-isolated property 'isPlaying' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
15 | public var isPlaying: Binder<Bool> {
16 | return Binder(self.base) { view, isPlaying in
17 | view.isPlaying = isPlaying
| `- warning: main actor-isolated property 'isPlaying' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 | }
SpriteKit.SK3DNode:13:14: note: mutation of this property is only permitted within the actor
11 | open func projectPoint(_ point: vector_float3) -> vector_float3
12 | open func unprojectPoint(_ point: vector_float3) -> vector_float3
13 | open var isPlaying: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
14 | @available(swift, obsoleted: 3, renamed: "isPlaying")
15 | open var playing: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:23:18: warning: main actor-isolated property 'loops' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
21 | public var loops: Binder<Bool> {
22 | return Binder(self.base) { view, loops in
23 | view.loops = loops
| `- warning: main actor-isolated property 'loops' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
24 | }
25 | }
SpriteKit.SK3DNode:16:14: note: mutation of this property is only permitted within the actor
14 | @available(swift, obsoleted: 3, renamed: "isPlaying")
15 | open var playing: Bool { get set }
16 | open var loops: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
17 | open var pointOfView: SCNNode? { get set }
18 | @MainActor open var autoenablesDefaultLighting: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:29:18: warning: main actor-isolated property 'pointOfView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
27 | public var pointOfView: Binder<SCNNode?> {
28 | return Binder(self.base) { view, pointOfView in
29 | view.pointOfView = pointOfView
| `- warning: main actor-isolated property 'pointOfView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
30 | }
31 | }
SpriteKit.SK3DNode:17:14: note: mutation of this property is only permitted within the actor
15 | open var playing: Bool { get set }
16 | open var loops: Bool { get set }
17 | open var pointOfView: SCNNode? { get set }
| `- note: mutation of this property is only permitted within the actor
18 | @MainActor open var autoenablesDefaultLighting: Bool { get set }
19 | public convenience init()
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:35:18: warning: main actor-isolated property 'sceneTime' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
33 | public var sceneTime: Binder<TimeInterval> {
34 | return Binder(self.base) { view, sceneTime in
35 | view.sceneTime = sceneTime
| `- warning: main actor-isolated property 'sceneTime' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
36 | }
37 | }
SpriteKit.SK3DNode:9:14: note: mutation of this property is only permitted within the actor
7 | open var viewportSize: CGSize { get set }
8 | open var scnScene: SCNScene? { get set }
9 | open var sceneTime: TimeInterval { get set }
| `- note: mutation of this property is only permitted within the actor
10 | open func hitTest(_ point: CGPoint, options: [String : Any]? = nil) -> [SCNHitTestResult]
11 | open func projectPoint(_ point: vector_float3) -> vector_float3
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:41:18: warning: main actor-isolated property 'scnScene' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
39 | public var scnScene: Binder<SCNScene?> {
40 | return Binder(self.base) { view, scnScene in
41 | view.scnScene = scnScene
| `- warning: main actor-isolated property 'scnScene' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
42 | }
43 | }
SpriteKit.SK3DNode:8:14: note: mutation of this property is only permitted within the actor
6 | open class func nodeWithViewportSize(_ viewportSize: CGSize) -> Self
7 | open var viewportSize: CGSize { get set }
8 | open var scnScene: SCNScene? { get set }
| `- note: mutation of this property is only permitted within the actor
9 | open var sceneTime: TimeInterval { get set }
10 | open func hitTest(_ point: CGPoint, options: [String : Any]? = nil) -> [SCNHitTestResult]
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:47:18: warning: main actor-isolated property 'viewportSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
45 | public var viewportSize: Binder<CGSize> {
46 | return Binder(self.base) { view, viewportSize in
47 | view.viewportSize = viewportSize
| `- warning: main actor-isolated property 'viewportSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
48 | }
49 | }
SpriteKit.SK3DNode:7:14: note: mutation of this property is only permitted within the actor
5 | @available(*, unavailable, renamed: "init(viewportSize:)", message: "Not available in Swift")
6 | open class func nodeWithViewportSize(_ viewportSize: CGSize) -> Self
7 | open var viewportSize: CGSize { get set }
| `- note: mutation of this property is only permitted within the actor
8 | open var scnScene: SCNScene? { get set }
9 | open var sceneTime: TimeInterval { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKAudioNode+Binder.swift:11:18: warning: main actor-isolated property 'autoplayLooped' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
9 | public var autoplayLooped: Binder<Bool> {
10 | return Binder(self.base) { view, autoplayLooped in
11 | view.autoplayLooped = autoplayLooped
| `- warning: main actor-isolated property 'autoplayLooped' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
12 | }
13 | }
SpriteKit.SKAudioNode:12:25: note: mutation of this property is only permitted within the actor
10 | public convenience init(URL url: URL)
11 | open var avAudioNode: AVAudioNode? { get set }
12 | @MainActor open var autoplayLooped: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
13 | open var isPositional: Bool { get set }
14 | @available(swift, obsoleted: 3, renamed: "isPositional")
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKAudioNode+Binder.swift:17:18: warning: main actor-isolated property 'avAudioNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
15 | public var avAudioNode: Binder<AVAudioNode?> {
16 | return Binder(self.base) { view, avAudioNode in
17 | view.avAudioNode = avAudioNode
| `- warning: main actor-isolated property 'avAudioNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 | }
SpriteKit.SKAudioNode:11:14: note: mutation of this property is only permitted within the actor
9 | @available(swift, obsoleted: 3, renamed: "init(url:)")
10 | public convenience init(URL url: URL)
11 | open var avAudioNode: AVAudioNode? { get set }
| `- note: mutation of this property is only permitted within the actor
12 | @MainActor open var autoplayLooped: Bool { get set }
13 | open var isPositional: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKAudioNode+Binder.swift:23:18: warning: main actor-isolated property 'isPositional' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
21 | public var isPositional: Binder<Bool> {
22 | return Binder(self.base) { view, isPositional in
23 | view.isPositional = isPositional
| `- warning: main actor-isolated property 'isPositional' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
24 | }
25 | }
SpriteKit.SKAudioNode:13:14: note: mutation of this property is only permitted within the actor
11 | open var avAudioNode: AVAudioNode? { get set }
12 | @MainActor open var autoplayLooped: Bool { get set }
13 | open var isPositional: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
14 | @available(swift, obsoleted: 3, renamed: "isPositional")
15 | open var positional: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKCropNode+Binder.swift:10:18: warning: main actor-isolated property 'maskNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var maskNode: Binder<SKNode?> {
9 | return Binder(self.base) { view, maskNode in
10 | view.maskNode = maskNode
| `- warning: main actor-isolated property 'maskNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKCropNode:2:25: note: mutation of this property is only permitted within the actor
1 | @MainActor open class SKCropNode : SKNode {
2 | @MainActor open var maskNode: SKNode? { get set }
| `- note: mutation of this property is only permitted within the actor
3 | public init()
4 | public init?(coder aDecoder: NSCoder)
[301/301] Compiling RxSpriteKit SKCropNode+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:11:18: warning: main actor-isolated property 'autoenablesDefaultLighting' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
9 | public var autoenablesDefaultLighting: Binder<Bool> {
10 | return Binder(self.base) { view, autoenablesDefaultLighting in
11 | view.autoenablesDefaultLighting = autoenablesDefaultLighting
| `- warning: main actor-isolated property 'autoenablesDefaultLighting' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
12 | }
13 | }
SpriteKit.SK3DNode:18:25: note: mutation of this property is only permitted within the actor
16 | open var loops: Bool { get set }
17 | open var pointOfView: SCNNode? { get set }
18 | @MainActor open var autoenablesDefaultLighting: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
19 | public convenience init()
20 | public convenience init?(fileNamed filename: String)
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:17:18: warning: main actor-isolated property 'isPlaying' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
15 | public var isPlaying: Binder<Bool> {
16 | return Binder(self.base) { view, isPlaying in
17 | view.isPlaying = isPlaying
| `- warning: main actor-isolated property 'isPlaying' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 | }
SpriteKit.SK3DNode:13:14: note: mutation of this property is only permitted within the actor
11 | open func projectPoint(_ point: vector_float3) -> vector_float3
12 | open func unprojectPoint(_ point: vector_float3) -> vector_float3
13 | open var isPlaying: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
14 | @available(swift, obsoleted: 3, renamed: "isPlaying")
15 | open var playing: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:23:18: warning: main actor-isolated property 'loops' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
21 | public var loops: Binder<Bool> {
22 | return Binder(self.base) { view, loops in
23 | view.loops = loops
| `- warning: main actor-isolated property 'loops' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
24 | }
25 | }
SpriteKit.SK3DNode:16:14: note: mutation of this property is only permitted within the actor
14 | @available(swift, obsoleted: 3, renamed: "isPlaying")
15 | open var playing: Bool { get set }
16 | open var loops: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
17 | open var pointOfView: SCNNode? { get set }
18 | @MainActor open var autoenablesDefaultLighting: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:29:18: warning: main actor-isolated property 'pointOfView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
27 | public var pointOfView: Binder<SCNNode?> {
28 | return Binder(self.base) { view, pointOfView in
29 | view.pointOfView = pointOfView
| `- warning: main actor-isolated property 'pointOfView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
30 | }
31 | }
SpriteKit.SK3DNode:17:14: note: mutation of this property is only permitted within the actor
15 | open var playing: Bool { get set }
16 | open var loops: Bool { get set }
17 | open var pointOfView: SCNNode? { get set }
| `- note: mutation of this property is only permitted within the actor
18 | @MainActor open var autoenablesDefaultLighting: Bool { get set }
19 | public convenience init()
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:35:18: warning: main actor-isolated property 'sceneTime' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
33 | public var sceneTime: Binder<TimeInterval> {
34 | return Binder(self.base) { view, sceneTime in
35 | view.sceneTime = sceneTime
| `- warning: main actor-isolated property 'sceneTime' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
36 | }
37 | }
SpriteKit.SK3DNode:9:14: note: mutation of this property is only permitted within the actor
7 | open var viewportSize: CGSize { get set }
8 | open var scnScene: SCNScene? { get set }
9 | open var sceneTime: TimeInterval { get set }
| `- note: mutation of this property is only permitted within the actor
10 | open func hitTest(_ point: CGPoint, options: [String : Any]? = nil) -> [SCNHitTestResult]
11 | open func projectPoint(_ point: vector_float3) -> vector_float3
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:41:18: warning: main actor-isolated property 'scnScene' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
39 | public var scnScene: Binder<SCNScene?> {
40 | return Binder(self.base) { view, scnScene in
41 | view.scnScene = scnScene
| `- warning: main actor-isolated property 'scnScene' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
42 | }
43 | }
SpriteKit.SK3DNode:8:14: note: mutation of this property is only permitted within the actor
6 | open class func nodeWithViewportSize(_ viewportSize: CGSize) -> Self
7 | open var viewportSize: CGSize { get set }
8 | open var scnScene: SCNScene? { get set }
| `- note: mutation of this property is only permitted within the actor
9 | open var sceneTime: TimeInterval { get set }
10 | open func hitTest(_ point: CGPoint, options: [String : Any]? = nil) -> [SCNHitTestResult]
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SK3DNode+Binder.swift:47:18: warning: main actor-isolated property 'viewportSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
45 | public var viewportSize: Binder<CGSize> {
46 | return Binder(self.base) { view, viewportSize in
47 | view.viewportSize = viewportSize
| `- warning: main actor-isolated property 'viewportSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
48 | }
49 | }
SpriteKit.SK3DNode:7:14: note: mutation of this property is only permitted within the actor
5 | @available(*, unavailable, renamed: "init(viewportSize:)", message: "Not available in Swift")
6 | open class func nodeWithViewportSize(_ viewportSize: CGSize) -> Self
7 | open var viewportSize: CGSize { get set }
| `- note: mutation of this property is only permitted within the actor
8 | open var scnScene: SCNScene? { get set }
9 | open var sceneTime: TimeInterval { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKAudioNode+Binder.swift:11:18: warning: main actor-isolated property 'autoplayLooped' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
9 | public var autoplayLooped: Binder<Bool> {
10 | return Binder(self.base) { view, autoplayLooped in
11 | view.autoplayLooped = autoplayLooped
| `- warning: main actor-isolated property 'autoplayLooped' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
12 | }
13 | }
SpriteKit.SKAudioNode:12:25: note: mutation of this property is only permitted within the actor
10 | public convenience init(URL url: URL)
11 | open var avAudioNode: AVAudioNode? { get set }
12 | @MainActor open var autoplayLooped: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
13 | open var isPositional: Bool { get set }
14 | @available(swift, obsoleted: 3, renamed: "isPositional")
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKAudioNode+Binder.swift:17:18: warning: main actor-isolated property 'avAudioNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
15 | public var avAudioNode: Binder<AVAudioNode?> {
16 | return Binder(self.base) { view, avAudioNode in
17 | view.avAudioNode = avAudioNode
| `- warning: main actor-isolated property 'avAudioNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 | }
SpriteKit.SKAudioNode:11:14: note: mutation of this property is only permitted within the actor
9 | @available(swift, obsoleted: 3, renamed: "init(url:)")
10 | public convenience init(URL url: URL)
11 | open var avAudioNode: AVAudioNode? { get set }
| `- note: mutation of this property is only permitted within the actor
12 | @MainActor open var autoplayLooped: Bool { get set }
13 | open var isPositional: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKAudioNode+Binder.swift:23:18: warning: main actor-isolated property 'isPositional' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
21 | public var isPositional: Binder<Bool> {
22 | return Binder(self.base) { view, isPositional in
23 | view.isPositional = isPositional
| `- warning: main actor-isolated property 'isPositional' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
24 | }
25 | }
SpriteKit.SKAudioNode:13:14: note: mutation of this property is only permitted within the actor
11 | open var avAudioNode: AVAudioNode? { get set }
12 | @MainActor open var autoplayLooped: Bool { get set }
13 | open var isPositional: Bool { get set }
| `- note: mutation of this property is only permitted within the actor
14 | @available(swift, obsoleted: 3, renamed: "isPositional")
15 | open var positional: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKCropNode+Binder.swift:10:18: warning: main actor-isolated property 'maskNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var maskNode: Binder<SKNode?> {
9 | return Binder(self.base) { view, maskNode in
10 | view.maskNode = maskNode
| `- warning: main actor-isolated property 'maskNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
SpriteKit.SKCropNode:2:25: note: mutation of this property is only permitted within the actor
1 | @MainActor open class SKCropNode : SKNode {
2 | @MainActor open var maskNode: SKNode? { get set }
| `- note: mutation of this property is only permitted within the actor
3 | public init()
4 | public init?(coder aDecoder: NSCoder)
Build complete! (31.45s)
Build complete.
{
"dependencies" : [
{
"identity" : "rxswift",
"requirement" : {
"range" : [
{
"lower_bound" : "5.0.0",
"upper_bound" : "5.1.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ReactiveX/RxSwift.git"
}
],
"manifest_display_name" : "RxSpriteKit",
"name" : "RxSpriteKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "macos",
"version" : "10.14"
},
{
"name" : "tvos",
"version" : "12.0"
},
{
"name" : "watchos",
"version" : "4.0"
}
],
"products" : [
{
"name" : "RxSpriteKit",
"targets" : [
"RxSpriteKit"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "RxSpriteKitTests",
"module_type" : "SwiftTarget",
"name" : "RxSpriteKitTests",
"path" : "Tests/RxSpriteKitTests",
"product_dependencies" : [
"RxTest",
"RxBlocking"
],
"sources" : [
"SKScene+LifeCycleTests.swift"
],
"target_dependencies" : [
"RxSpriteKit"
],
"type" : "test"
},
{
"c99name" : "RxSpriteKit",
"module_type" : "SwiftTarget",
"name" : "RxSpriteKit",
"path" : "Sources/RxSpriteKit",
"product_dependencies" : [
"RxSwift",
"RxCocoa",
"RxRelay"
],
"product_memberships" : [
"RxSpriteKit"
],
"sources" : [
"Binders/SK3DNode+Binder.swift",
"Binders/SKAudioNode+Binder.swift",
"Binders/SKCropNode+Binder.swift",
"Binders/SKEffectNode+Binder.swift",
"Binders/SKEmitterNode+Binder.swift",
"Binders/SKFieldNode+Binder.swift",
"Binders/SKLabelNode+Binder.swift",
"Binders/SKLightNode+Binder.swift",
"Binders/SKNode+Binder.swift",
"Binders/SKPhysicsBody+Binder.swift",
"Binders/SKPhysicsJoint+Binder.swift",
"Binders/SKPhysicsJointLimit+Binder.swift",
"Binders/SKPhysicsJointPin+Binder.swift",
"Binders/SKPhysicsJointSliding+Binder.swift",
"Binders/SKPhysicsJointSpring+Binder.swift",
"Binders/SKPhysicsWorld+Binder.swift",
"Binders/SKScene+Binder.swift",
"Binders/SKShapeNode+Binder.swift",
"Binders/SKSpriteNode+Binder.swift",
"Binders/SKTileMapNode+Binder.swift",
"Binders/SKTransformNode+Binder.swift",
"Binders/SKVideoNode+Binder.swift",
"Binders/SKView+Binder.swift",
"Input/iOS/UIResponder+Rx.swift",
"Input/macOS/NSResponder+Rx.swift",
"LifeCycles/SKScene+LifeCycle.swift",
"Utilities/Aliases.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Done.