Build Information
Successful build of RxSpriteKit, reference 2.0.0 (40be0d
), with Swift 6.1 for macOS (SPM) on 24 Apr 2025 22:58:15 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.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
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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:117:35: note: mutation of this property is only permitted within the actor
115 | @see SKNode.SKBlendMode
116 | */
117 | @property (nonatomic) SKBlendMode blendMode;
| `- note: mutation of this property is only permitted within the actor
118 |
119 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:111:40: note: mutation of this property is only permitted within the actor
109 | Base color for the tile map (If no texture is present, the color still is drawn).
110 | */
111 | @property (nonatomic, retain) SKColor *color;
| `- note: mutation of this property is only permitted within the actor
112 |
113 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:106:31: note: mutation of this property is only permitted within the actor
104 | Controls the blending between the texture and the tile map color. The valid interval of values is from 0.0 up to and including 1.0. A value above or below that interval is clamped to the minimum (0.0) if below or the maximum (1.0) if above.
105 | */
106 | @property (nonatomic) CGFloat colorBlendFactor;
| `- note: mutation of this property is only permitted within the actor
107 |
108 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:34:18: warning: main actor-isolated property 'enableAutomapping' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var enableAutomapping: Binder<Bool> {
33 | return Binder(self.base) { view, enableAutomapping in
34 | view.enableAutomapping = enableAutomapping
| `- warning: main actor-isolated property 'enableAutomapping' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:148:28: note: mutation of this property is only permitted within the actor
146 | @property (nonatomic) uint32_t lightingBitMask;
147 |
148 | @property (nonatomic) BOOL enableAutomapping;
| `- note: mutation of this property is only permitted within the actor
149 |
150 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:40:18: warning: main actor-isolated property 'lightingBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var lightingBitMask: Binder<UInt32> {
39 | return Binder(self.base) { view, lightingBitMask in
40 | view.lightingBitMask = lightingBitMask
| `- warning: main actor-isolated property 'lightingBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:146:32: note: mutation of this property is only permitted within the actor
144 | When used together with a normal texture, complex lighting effects can be used.
145 | */
146 | @property (nonatomic) uint32_t lightingBitMask;
| `- note: mutation of this property is only permitted within the actor
147 |
148 | @property (nonatomic) BOOL enableAutomapping;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:46:18: warning: main actor-isolated property 'numberOfColumns' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var numberOfColumns: Binder<Int> {
45 | return Binder(self.base) { view, numberOfColumns in
46 | view.numberOfColumns = numberOfColumns
| `- warning: main actor-isolated property 'numberOfColumns' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:81:34: note: mutation of this property is only permitted within the actor
79 | The number of columns in the tile map.
80 | */
81 | @property (nonatomic) NSUInteger numberOfColumns;
| `- note: mutation of this property is only permitted within the actor
82 |
83 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:52:18: warning: main actor-isolated property 'numberOfRows' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var numberOfRows: Binder<Int> {
51 | return Binder(self.base) { view, numberOfRows in
52 | view.numberOfRows = numberOfRows
| `- warning: main actor-isolated property 'numberOfRows' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:86:34: note: mutation of this property is only permitted within the actor
84 | The number of rows in the tile map.
85 | */
86 | @property (nonatomic) NSUInteger numberOfRows;
| `- note: mutation of this property is only permitted within the actor
87 |
88 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:58:18: warning: main actor-isolated property 'tileSet' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var tileSet: Binder<SKTileSet> {
57 | return Binder(self.base) { view, tileSet in
58 | view.tileSet = tileSet
| `- warning: main actor-isolated property 'tileSet' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:101:34: note: mutation of this property is only permitted within the actor
99 | The tile set being used by this tile map.
100 | */
101 | @property (nonatomic) SKTileSet *tileSet;
| `- note: mutation of this property is only permitted within the actor
102 |
103 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:64:18: warning: main actor-isolated property 'tileSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var tileSize: Binder<CGSize> {
63 | return Binder(self.base) { view, tileSize in
64 | view.tileSize = tileSize
| `- warning: main actor-isolated property 'tileSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
65 | }
66 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:91:30: note: mutation of this property is only permitted within the actor
89 | The size of each tile in the map.
90 | */
91 | @property (nonatomic) CGSize tileSize;
| `- note: mutation of this property is only permitted within the actor
92 |
93 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTransformNode+Binder.swift:10:18: warning: main actor-isolated property 'xRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var xRotation: Binder<CGFloat> {
9 | return Binder(self.base) { view, xRotation in
10 | view.xRotation = xRotation
| `- warning: main actor-isolated property 'xRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTransformNode.h:24:31: note: mutation of this property is only permitted within the actor
22 | API_AVAILABLE(ios(11.0), tvos(11.0), watchos(4.0), macos(10.13)) SK_EXPORT @interface SKTransformNode : SKNode
23 |
24 | @property (nonatomic) CGFloat xRotation;
| `- note: mutation of this property is only permitted within the actor
25 | @property (nonatomic) CGFloat yRotation;
26 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTransformNode+Binder.swift:16:18: warning: main actor-isolated property 'yRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var yRotation: Binder<CGFloat> {
15 | return Binder(self.base) { view, yRotation in
16 | view.yRotation = yRotation
| `- warning: main actor-isolated property 'yRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTransformNode.h:25:31: note: mutation of this property is only permitted within the actor
23 |
24 | @property (nonatomic) CGFloat xRotation;
25 | @property (nonatomic) CGFloat yRotation;
| `- note: mutation of this property is only permitted within the actor
26 |
27 | /**
[291/301] Compiling RxSpriteKit SKTileMapNode+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:158:31: note: mutation of this property is only permitted within the actor
156 | Used to choose the location in the sprite that maps to its 'position' in the parent's coordinate space. The valid interval for each input is from 0.0 up to and including 1.0.
157 | */
158 | @property (nonatomic) CGPoint anchorPoint;
| `- note: mutation of this property is only permitted within the actor
159 |
160 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:153:35: note: mutation of this property is only permitted within the actor
151 | @see SKNode.SKBlendMode
152 | */
153 | @property (nonatomic) SKBlendMode blendMode;
| `- note: mutation of this property is only permitted within the actor
154 |
155 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:22:18: warning: main actor-isolated property 'centerRect' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var centerRect: Binder<CGRect> {
21 | return Binder(self.base) { view, centerRect in
22 | view.centerRect = centerRect
| `- warning: main actor-isolated property 'centerRect' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:137:30: note: mutation of this property is only permitted within the actor
135 | Controls how the texture is stretched to fill the SKSpriteNode. Stretching is performed via a 9-part algorithm where the upper & lower middle parts are scaled horizontally, the left and right middle parts are scaled vertically, the center is scaled in both directions, and the corners are preserved. The centerRect defines the center region in a (0.0 - 1.0) coordinate space. Defaults to {(0,0) (1,1)} (the entire texture is stretched).
136 | */
137 | @property (nonatomic) CGRect centerRect;
| `- note: mutation of this property is only permitted within the actor
138 |
139 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:142:31: note: mutation of this property is only permitted within the actor
140 | Controls the blending between the texture and the sprite's color. The valid interval of values is from 0.0 up to and including 1.0. A value above or below that interval is clamped to the minimum (0.0) if below or the maximum (1.0) if above.
141 | */
142 | @property (nonatomic) CGFloat colorBlendFactor;
| `- note: mutation of this property is only permitted within the actor
143 |
144 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:34:18: warning: main actor-isolated property 'lightingBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var lightingBitMask: Binder<UInt32> {
33 | return Binder(self.base) { view, lightingBitMask in
34 | view.lightingBitMask = lightingBitMask
| `- warning: main actor-isolated property 'lightingBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:126:32: note: mutation of this property is only permitted within the actor
124 | When used together with a normal texture, complex lighting effects can be used.
125 | */
126 | @property (nonatomic) uint32_t lightingBitMask API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
| `- note: mutation of this property is only permitted within the actor
127 |
128 | @property (nonatomic) uint32_t shadowCastBitMask API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:40:18: warning: main actor-isolated property 'normalTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var normalTexture: Binder<SKTexture?> {
39 | return Binder(self.base) { view, normalTexture in
40 | view.normalTexture = normalTexture
| `- warning: main actor-isolated property 'normalTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:115:52: note: mutation of this property is only permitted within the actor
113 | @see lightingBitMask
114 | */
115 | @property (nonatomic, retain, nullable) SKTexture *normalTexture API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
| `- note: mutation of this property is only permitted within the actor
116 |
117 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:46:18: warning: main actor-isolated property 'shader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var shader: Binder<SKShader?> {
45 | return Binder(self.base) { view, shader in
46 | view.shader = shader
| `- warning: main actor-isolated property 'shader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:170:51: note: mutation of this property is only permitted within the actor
168 | - (void)scaleToSize:(CGSize)size API_AVAILABLE(ios(10.0), tvos(10.0), watchos(3.0), macos(10.12));
169 |
170 | @property (nonatomic, retain, nullable) SKShader *shader API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
| `- note: mutation of this property is only permitted within the actor
171 |
172 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:52:18: warning: main actor-isolated property 'shadowedBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var shadowedBitMask: Binder<UInt32> {
51 | return Binder(self.base) { view, shadowedBitMask in
52 | view.shadowedBitMask = shadowedBitMask
| `- warning: main actor-isolated property 'shadowedBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:130:32: note: mutation of this property is only permitted within the actor
128 | @property (nonatomic) uint32_t shadowCastBitMask API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
129 |
130 | @property (nonatomic) uint32_t shadowedBitMask API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
| `- note: mutation of this property is only permitted within the actor
131 |
132 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:58:18: warning: main actor-isolated property 'texture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var texture: Binder<SKTexture?> {
57 | return Binder(self.base) { view, texture in
58 | view.texture = texture
| `- warning: main actor-isolated property 'texture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:105:52: note: mutation of this property is only permitted within the actor
103 | Texture to be drawn (is stretched to fill the sprite)
104 | */
105 | @property (nonatomic, retain, nullable) SKTexture *texture;
| `- note: mutation of this property is only permitted within the actor
106 |
107 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:122:31: note: mutation of this property is only permitted within the actor
120 | Used to choose the location in the tile map that maps to its 'position' in the parent's coordinate space. The valid interval for each input is from 0.0 up to and including 1.0.
121 | */
122 | @property (nonatomic) CGPoint anchorPoint;
| `- note: mutation of this property is only permitted within the actor
123 |
124 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:117:35: note: mutation of this property is only permitted within the actor
115 | @see SKNode.SKBlendMode
116 | */
117 | @property (nonatomic) SKBlendMode blendMode;
| `- note: mutation of this property is only permitted within the actor
118 |
119 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:111:40: note: mutation of this property is only permitted within the actor
109 | Base color for the tile map (If no texture is present, the color still is drawn).
110 | */
111 | @property (nonatomic, retain) SKColor *color;
| `- note: mutation of this property is only permitted within the actor
112 |
113 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:106:31: note: mutation of this property is only permitted within the actor
104 | Controls the blending between the texture and the tile map color. The valid interval of values is from 0.0 up to and including 1.0. A value above or below that interval is clamped to the minimum (0.0) if below or the maximum (1.0) if above.
105 | */
106 | @property (nonatomic) CGFloat colorBlendFactor;
| `- note: mutation of this property is only permitted within the actor
107 |
108 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:34:18: warning: main actor-isolated property 'enableAutomapping' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var enableAutomapping: Binder<Bool> {
33 | return Binder(self.base) { view, enableAutomapping in
34 | view.enableAutomapping = enableAutomapping
| `- warning: main actor-isolated property 'enableAutomapping' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:148:28: note: mutation of this property is only permitted within the actor
146 | @property (nonatomic) uint32_t lightingBitMask;
147 |
148 | @property (nonatomic) BOOL enableAutomapping;
| `- note: mutation of this property is only permitted within the actor
149 |
150 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:40:18: warning: main actor-isolated property 'lightingBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var lightingBitMask: Binder<UInt32> {
39 | return Binder(self.base) { view, lightingBitMask in
40 | view.lightingBitMask = lightingBitMask
| `- warning: main actor-isolated property 'lightingBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:146:32: note: mutation of this property is only permitted within the actor
144 | When used together with a normal texture, complex lighting effects can be used.
145 | */
146 | @property (nonatomic) uint32_t lightingBitMask;
| `- note: mutation of this property is only permitted within the actor
147 |
148 | @property (nonatomic) BOOL enableAutomapping;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:46:18: warning: main actor-isolated property 'numberOfColumns' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var numberOfColumns: Binder<Int> {
45 | return Binder(self.base) { view, numberOfColumns in
46 | view.numberOfColumns = numberOfColumns
| `- warning: main actor-isolated property 'numberOfColumns' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:81:34: note: mutation of this property is only permitted within the actor
79 | The number of columns in the tile map.
80 | */
81 | @property (nonatomic) NSUInteger numberOfColumns;
| `- note: mutation of this property is only permitted within the actor
82 |
83 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:52:18: warning: main actor-isolated property 'numberOfRows' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var numberOfRows: Binder<Int> {
51 | return Binder(self.base) { view, numberOfRows in
52 | view.numberOfRows = numberOfRows
| `- warning: main actor-isolated property 'numberOfRows' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:86:34: note: mutation of this property is only permitted within the actor
84 | The number of rows in the tile map.
85 | */
86 | @property (nonatomic) NSUInteger numberOfRows;
| `- note: mutation of this property is only permitted within the actor
87 |
88 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:58:18: warning: main actor-isolated property 'tileSet' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var tileSet: Binder<SKTileSet> {
57 | return Binder(self.base) { view, tileSet in
58 | view.tileSet = tileSet
| `- warning: main actor-isolated property 'tileSet' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:101:34: note: mutation of this property is only permitted within the actor
99 | The tile set being used by this tile map.
100 | */
101 | @property (nonatomic) SKTileSet *tileSet;
| `- note: mutation of this property is only permitted within the actor
102 |
103 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:64:18: warning: main actor-isolated property 'tileSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var tileSize: Binder<CGSize> {
63 | return Binder(self.base) { view, tileSize in
64 | view.tileSize = tileSize
| `- warning: main actor-isolated property 'tileSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
65 | }
66 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:91:30: note: mutation of this property is only permitted within the actor
89 | The size of each tile in the map.
90 | */
91 | @property (nonatomic) CGSize tileSize;
| `- note: mutation of this property is only permitted within the actor
92 |
93 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTransformNode+Binder.swift:10:18: warning: main actor-isolated property 'xRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var xRotation: Binder<CGFloat> {
9 | return Binder(self.base) { view, xRotation in
10 | view.xRotation = xRotation
| `- warning: main actor-isolated property 'xRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTransformNode.h:24:31: note: mutation of this property is only permitted within the actor
22 | API_AVAILABLE(ios(11.0), tvos(11.0), watchos(4.0), macos(10.13)) SK_EXPORT @interface SKTransformNode : SKNode
23 |
24 | @property (nonatomic) CGFloat xRotation;
| `- note: mutation of this property is only permitted within the actor
25 | @property (nonatomic) CGFloat yRotation;
26 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTransformNode+Binder.swift:16:18: warning: main actor-isolated property 'yRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var yRotation: Binder<CGFloat> {
15 | return Binder(self.base) { view, yRotation in
16 | view.yRotation = yRotation
| `- warning: main actor-isolated property 'yRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTransformNode.h:25:31: note: mutation of this property is only permitted within the actor
23 |
24 | @property (nonatomic) CGFloat xRotation;
25 | @property (nonatomic) CGFloat yRotation;
| `- note: mutation of this property is only permitted within the actor
26 |
27 | /**
[292/301] Compiling RxSpriteKit SKTransformNode+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:158:31: note: mutation of this property is only permitted within the actor
156 | Used to choose the location in the sprite that maps to its 'position' in the parent's coordinate space. The valid interval for each input is from 0.0 up to and including 1.0.
157 | */
158 | @property (nonatomic) CGPoint anchorPoint;
| `- note: mutation of this property is only permitted within the actor
159 |
160 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:153:35: note: mutation of this property is only permitted within the actor
151 | @see SKNode.SKBlendMode
152 | */
153 | @property (nonatomic) SKBlendMode blendMode;
| `- note: mutation of this property is only permitted within the actor
154 |
155 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:22:18: warning: main actor-isolated property 'centerRect' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var centerRect: Binder<CGRect> {
21 | return Binder(self.base) { view, centerRect in
22 | view.centerRect = centerRect
| `- warning: main actor-isolated property 'centerRect' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
23 | }
24 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:137:30: note: mutation of this property is only permitted within the actor
135 | Controls how the texture is stretched to fill the SKSpriteNode. Stretching is performed via a 9-part algorithm where the upper & lower middle parts are scaled horizontally, the left and right middle parts are scaled vertically, the center is scaled in both directions, and the corners are preserved. The centerRect defines the center region in a (0.0 - 1.0) coordinate space. Defaults to {(0,0) (1,1)} (the entire texture is stretched).
136 | */
137 | @property (nonatomic) CGRect centerRect;
| `- note: mutation of this property is only permitted within the actor
138 |
139 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:142:31: note: mutation of this property is only permitted within the actor
140 | Controls the blending between the texture and the sprite's color. The valid interval of values is from 0.0 up to and including 1.0. A value above or below that interval is clamped to the minimum (0.0) if below or the maximum (1.0) if above.
141 | */
142 | @property (nonatomic) CGFloat colorBlendFactor;
| `- note: mutation of this property is only permitted within the actor
143 |
144 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:34:18: warning: main actor-isolated property 'lightingBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var lightingBitMask: Binder<UInt32> {
33 | return Binder(self.base) { view, lightingBitMask in
34 | view.lightingBitMask = lightingBitMask
| `- warning: main actor-isolated property 'lightingBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:126:32: note: mutation of this property is only permitted within the actor
124 | When used together with a normal texture, complex lighting effects can be used.
125 | */
126 | @property (nonatomic) uint32_t lightingBitMask API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
| `- note: mutation of this property is only permitted within the actor
127 |
128 | @property (nonatomic) uint32_t shadowCastBitMask API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:40:18: warning: main actor-isolated property 'normalTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var normalTexture: Binder<SKTexture?> {
39 | return Binder(self.base) { view, normalTexture in
40 | view.normalTexture = normalTexture
| `- warning: main actor-isolated property 'normalTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:115:52: note: mutation of this property is only permitted within the actor
113 | @see lightingBitMask
114 | */
115 | @property (nonatomic, retain, nullable) SKTexture *normalTexture API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
| `- note: mutation of this property is only permitted within the actor
116 |
117 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:46:18: warning: main actor-isolated property 'shader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var shader: Binder<SKShader?> {
45 | return Binder(self.base) { view, shader in
46 | view.shader = shader
| `- warning: main actor-isolated property 'shader' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:170:51: note: mutation of this property is only permitted within the actor
168 | - (void)scaleToSize:(CGSize)size API_AVAILABLE(ios(10.0), tvos(10.0), watchos(3.0), macos(10.12));
169 |
170 | @property (nonatomic, retain, nullable) SKShader *shader API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
| `- note: mutation of this property is only permitted within the actor
171 |
172 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:52:18: warning: main actor-isolated property 'shadowedBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var shadowedBitMask: Binder<UInt32> {
51 | return Binder(self.base) { view, shadowedBitMask in
52 | view.shadowedBitMask = shadowedBitMask
| `- warning: main actor-isolated property 'shadowedBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:130:32: note: mutation of this property is only permitted within the actor
128 | @property (nonatomic) uint32_t shadowCastBitMask API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
129 |
130 | @property (nonatomic) uint32_t shadowedBitMask API_AVAILABLE(ios(8.0), tvos(9.0), watchos(1.0), macos(10.10));
| `- note: mutation of this property is only permitted within the actor
131 |
132 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKSpriteNode+Binder.swift:58:18: warning: main actor-isolated property 'texture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var texture: Binder<SKTexture?> {
57 | return Binder(self.base) { view, texture in
58 | view.texture = texture
| `- warning: main actor-isolated property 'texture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKSpriteNode.h:105:52: note: mutation of this property is only permitted within the actor
103 | Texture to be drawn (is stretched to fill the sprite)
104 | */
105 | @property (nonatomic, retain, nullable) SKTexture *texture;
| `- note: mutation of this property is only permitted within the actor
106 |
107 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:122:31: note: mutation of this property is only permitted within the actor
120 | Used to choose the location in the tile map that maps to its 'position' in the parent's coordinate space. The valid interval for each input is from 0.0 up to and including 1.0.
121 | */
122 | @property (nonatomic) CGPoint anchorPoint;
| `- note: mutation of this property is only permitted within the actor
123 |
124 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:117:35: note: mutation of this property is only permitted within the actor
115 | @see SKNode.SKBlendMode
116 | */
117 | @property (nonatomic) SKBlendMode blendMode;
| `- note: mutation of this property is only permitted within the actor
118 |
119 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:111:40: note: mutation of this property is only permitted within the actor
109 | Base color for the tile map (If no texture is present, the color still is drawn).
110 | */
111 | @property (nonatomic, retain) SKColor *color;
| `- note: mutation of this property is only permitted within the actor
112 |
113 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:106:31: note: mutation of this property is only permitted within the actor
104 | Controls the blending between the texture and the tile map color. The valid interval of values is from 0.0 up to and including 1.0. A value above or below that interval is clamped to the minimum (0.0) if below or the maximum (1.0) if above.
105 | */
106 | @property (nonatomic) CGFloat colorBlendFactor;
| `- note: mutation of this property is only permitted within the actor
107 |
108 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:34:18: warning: main actor-isolated property 'enableAutomapping' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var enableAutomapping: Binder<Bool> {
33 | return Binder(self.base) { view, enableAutomapping in
34 | view.enableAutomapping = enableAutomapping
| `- warning: main actor-isolated property 'enableAutomapping' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 | }
36 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:148:28: note: mutation of this property is only permitted within the actor
146 | @property (nonatomic) uint32_t lightingBitMask;
147 |
148 | @property (nonatomic) BOOL enableAutomapping;
| `- note: mutation of this property is only permitted within the actor
149 |
150 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:40:18: warning: main actor-isolated property 'lightingBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var lightingBitMask: Binder<UInt32> {
39 | return Binder(self.base) { view, lightingBitMask in
40 | view.lightingBitMask = lightingBitMask
| `- warning: main actor-isolated property 'lightingBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
41 | }
42 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:146:32: note: mutation of this property is only permitted within the actor
144 | When used together with a normal texture, complex lighting effects can be used.
145 | */
146 | @property (nonatomic) uint32_t lightingBitMask;
| `- note: mutation of this property is only permitted within the actor
147 |
148 | @property (nonatomic) BOOL enableAutomapping;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:46:18: warning: main actor-isolated property 'numberOfColumns' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var numberOfColumns: Binder<Int> {
45 | return Binder(self.base) { view, numberOfColumns in
46 | view.numberOfColumns = numberOfColumns
| `- warning: main actor-isolated property 'numberOfColumns' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
47 | }
48 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:81:34: note: mutation of this property is only permitted within the actor
79 | The number of columns in the tile map.
80 | */
81 | @property (nonatomic) NSUInteger numberOfColumns;
| `- note: mutation of this property is only permitted within the actor
82 |
83 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:52:18: warning: main actor-isolated property 'numberOfRows' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var numberOfRows: Binder<Int> {
51 | return Binder(self.base) { view, numberOfRows in
52 | view.numberOfRows = numberOfRows
| `- warning: main actor-isolated property 'numberOfRows' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:86:34: note: mutation of this property is only permitted within the actor
84 | The number of rows in the tile map.
85 | */
86 | @property (nonatomic) NSUInteger numberOfRows;
| `- note: mutation of this property is only permitted within the actor
87 |
88 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:58:18: warning: main actor-isolated property 'tileSet' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var tileSet: Binder<SKTileSet> {
57 | return Binder(self.base) { view, tileSet in
58 | view.tileSet = tileSet
| `- warning: main actor-isolated property 'tileSet' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
59 | }
60 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:101:34: note: mutation of this property is only permitted within the actor
99 | The tile set being used by this tile map.
100 | */
101 | @property (nonatomic) SKTileSet *tileSet;
| `- note: mutation of this property is only permitted within the actor
102 |
103 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTileMapNode+Binder.swift:64:18: warning: main actor-isolated property 'tileSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var tileSize: Binder<CGSize> {
63 | return Binder(self.base) { view, tileSize in
64 | view.tileSize = tileSize
| `- warning: main actor-isolated property 'tileSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
65 | }
66 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTileMapNode.h:91:30: note: mutation of this property is only permitted within the actor
89 | The size of each tile in the map.
90 | */
91 | @property (nonatomic) CGSize tileSize;
| `- note: mutation of this property is only permitted within the actor
92 |
93 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTransformNode+Binder.swift:10:18: warning: main actor-isolated property 'xRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var xRotation: Binder<CGFloat> {
9 | return Binder(self.base) { view, xRotation in
10 | view.xRotation = xRotation
| `- warning: main actor-isolated property 'xRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
11 | }
12 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTransformNode.h:24:31: note: mutation of this property is only permitted within the actor
22 | API_AVAILABLE(ios(11.0), tvos(11.0), watchos(4.0), macos(10.13)) SK_EXPORT @interface SKTransformNode : SKNode
23 |
24 | @property (nonatomic) CGFloat xRotation;
| `- note: mutation of this property is only permitted within the actor
25 | @property (nonatomic) CGFloat yRotation;
26 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKTransformNode+Binder.swift:16:18: warning: main actor-isolated property 'yRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var yRotation: Binder<CGFloat> {
15 | return Binder(self.base) { view, yRotation in
16 | view.yRotation = yRotation
| `- warning: main actor-isolated property 'yRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | }
18 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKTransformNode.h:25:31: note: mutation of this property is only permitted within the actor
23 |
24 | @property (nonatomic) CGFloat xRotation;
25 | @property (nonatomic) CGFloat yRotation;
| `- note: mutation of this property is only permitted within the actor
26 |
27 | /**
[293/301] Compiling RxSpriteKit SKLabelNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:57:59: note: mutation of this property is only permitted within the actor
55 | @property (nonatomic, copy, nullable) NSString *fontName;
56 | @property (nonatomic, copy, nullable) NSString *text;
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
58 | @property (nonatomic) CGFloat fontSize;
59 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:80:35: note: mutation of this property is only permitted within the actor
78 | @see SKNode.SKBlendMode
79 | */
80 | @property (nonatomic) SKBlendMode blendMode;
| `- note: mutation of this property is only permitted within the actor
81 |
82 | @end
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:74:50: note: mutation of this property is only permitted within the actor
72 | Color to be blended with the text based on the colorBlendFactor
73 | */
74 | @property (nonatomic, retain, nullable) SKColor *color;
| `- note: mutation of this property is only permitted within the actor
75 |
76 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:69:31: note: mutation of this property is only permitted within the actor
67 | Controls the blending between the rendered text and a color. The valid interval of values is from 0.0 up to and including 1.0. A value above or below that interval is clamped to the minimum (0.0) if below or the maximum (1.0) if above.
68 | */
69 | @property (nonatomic) CGFloat colorBlendFactor;
| `- note: mutation of this property is only permitted within the actor
70 |
71 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:64:50: note: mutation of this property is only permitted within the actor
62 | Base color that the text is rendered with (if supported by the font)
63 | */
64 | @property (nonatomic, retain, nullable) SKColor *fontColor;
| `- note: mutation of this property is only permitted within the actor
65 |
66 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:55:49: note: mutation of this property is only permitted within the actor
53 | @property(nonatomic) CGFloat preferredMaxLayoutWidth API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
54 |
55 | @property (nonatomic, copy, nullable) NSString *fontName;
| `- note: mutation of this property is only permitted within the actor
56 | @property (nonatomic, copy, nullable) NSString *text;
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:58:31: note: mutation of this property is only permitted within the actor
56 | @property (nonatomic, copy, nullable) NSString *text;
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
58 | @property (nonatomic) CGFloat fontSize;
| `- note: mutation of this property is only permitted within the actor
59 |
60 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:38:54: note: mutation of this property is only permitted within the actor
36 |
37 | @property (nonatomic) SKLabelVerticalAlignmentMode verticalAlignmentMode;
38 | @property (nonatomic) SKLabelHorizontalAlignmentMode horizontalAlignmentMode;
| `- note: mutation of this property is only permitted within the actor
39 |
40 | /**Determines the number of lines to draw. The default value is 1 (single line). A value of 0 means no limit.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:48:38: note: mutation of this property is only permitted within the actor
46 | Default is NSLineBreakByTruncatingTail
47 | */
48 | @property(nonatomic) NSLineBreakMode lineBreakMode API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
49 |
50 | /**If nonzero, this is used when determining layout width for multiline labels.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:43:32: note: mutation of this property is only permitted within the actor
41 | If the height of the text reaches the # of lines the text will be truncated using the line break mode.
42 | */
43 | @property(nonatomic) NSInteger numberOfLines API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
44 |
45 | /**Determines the line break mode for multiple lines.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:53:30: note: mutation of this property is only permitted within the actor
51 | Default is zero.
52 | */
53 | @property(nonatomic) CGFloat preferredMaxLayoutWidth API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
54 |
55 | @property (nonatomic, copy, nullable) NSString *fontName;
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:56:49: note: mutation of this property is only permitted within the actor
54 |
55 | @property (nonatomic, copy, nullable) NSString *fontName;
56 | @property (nonatomic, copy, nullable) NSString *text;
| `- note: mutation of this property is only permitted within the actor
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
58 | @property (nonatomic) CGFloat fontSize;
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:37:52: note: mutation of this property is only permitted within the actor
35 | - (instancetype)initWithFontNamed:(nullable NSString *)fontName;
36 |
37 | @property (nonatomic) SKLabelVerticalAlignmentMode verticalAlignmentMode;
| `- note: mutation of this property is only permitted within the actor
38 | @property (nonatomic) SKLabelHorizontalAlignmentMode horizontalAlignmentMode;
39 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:59:32: note: mutation of this property is only permitted within the actor
57 | @see lightColor
58 | */
59 | @property (nonatomic) SKColor *ambientColor;
| `- note: mutation of this property is only permitted within the actor
60 |
61 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:88:32: note: mutation of this property is only permitted within the actor
86 | @see SKSpriteNode.shadowedBitMask
87 | */
88 | @property (nonatomic) uint32_t categoryBitMask;
| `- note: mutation of this property is only permitted within the actor
89 |
90 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:77:31: note: mutation of this property is only permitted within the actor
75 | @see lightColor
76 | */
77 | @property (nonatomic) CGFloat falloff;
| `- note: mutation of this property is only permitted within the actor
78 |
79 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:33:48: note: mutation of this property is only permitted within the actor
31 | @see categoryBitMask
32 | */
33 | @property (nonatomic, getter = isEnabled) BOOL enabled;
| `- note: mutation of this property is only permitted within the actor
34 |
35 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:45:32: note: mutation of this property is only permitted within the actor
43 | @see falloff
44 | */
45 | @property (nonatomic) SKColor *lightColor;
| `- note: mutation of this property is only permitted within the actor
46 |
47 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:69:32: note: mutation of this property is only permitted within the actor
67 | @see SKSpriteNode.shadowedBitMask
68 | */
69 | @property (nonatomic) SKColor *shadowColor;
| `- note: mutation of this property is only permitted within the actor
70 |
71 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:108:31: note: mutation of this property is only permitted within the actor
106 | Alpha of this node (multiplied by the output color to give the final result)
107 | */
108 | @property (nonatomic) CGFloat alpha;
| `- note: mutation of this property is only permitted within the actor
109 |
110 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:118:47: note: mutation of this property is only permitted within the actor
116 | Controls whether or not the node and its children are rendered.
117 | */
118 | @property (nonatomic, getter = isHidden) BOOL hidden;
| `- note: mutation of this property is only permitted within the actor
119 |
120 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:113:47: note: mutation of this property is only permitted within the actor
111 | Controls whether or not the node's actions is updated or paused.
112 | */
113 | @property (nonatomic, getter = isPaused) BOOL paused;
| `- note: mutation of this property is only permitted within the actor
114 |
115 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:79:31: note: mutation of this property is only permitted within the actor
77 | The position of the node in the parent's coordinate system
78 | */
79 | @property (nonatomic) CGPoint position;
| `- note: mutation of this property is only permitted within the actor
80 |
81 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:103:31: note: mutation of this property is only permitted within the actor
101 | The speed multiplier applied to all actions run on this node. Inherited by its children.
102 | */
103 | @property (nonatomic) CGFloat speed;
| `- note: mutation of this property is only permitted within the actor
104 |
105 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:94:31: note: mutation of this property is only permitted within the actor
92 | The scaling in the X axis
93 | */
94 | @property (nonatomic) CGFloat xScale;
| `- note: mutation of this property is only permitted within the actor
95 | /**
96 | The scaling in the Y axis
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:98:31: note: mutation of this property is only permitted within the actor
96 | The scaling in the Y axis
97 | */
98 | @property (nonatomic) CGFloat yScale;
| `- note: mutation of this property is only permitted within the actor
99 |
100 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:84:31: note: mutation of this property is only permitted within the actor
82 | The z-order of the node (used for ordering). Negative z is "into" the screen, Positive z is "out" of the screen. A greater zPosition will sort in front of a lesser zPosition.
83 | */
84 | @property (nonatomic) CGFloat zPosition;
| `- note: mutation of this property is only permitted within the actor
85 |
86 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:89:31: note: mutation of this property is only permitted within the actor
87 | The Euler rotation about the z axis (in radians)
88 | */
89 | @property (nonatomic) CGFloat zRotation;
| `- note: mutation of this property is only permitted within the actor
90 |
91 | /**
[294/301] Compiling RxSpriteKit SKLightNode+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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:57:59: note: mutation of this property is only permitted within the actor
55 | @property (nonatomic, copy, nullable) NSString *fontName;
56 | @property (nonatomic, copy, nullable) NSString *text;
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
58 | @property (nonatomic) CGFloat fontSize;
59 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:80:35: note: mutation of this property is only permitted within the actor
78 | @see SKNode.SKBlendMode
79 | */
80 | @property (nonatomic) SKBlendMode blendMode;
| `- note: mutation of this property is only permitted within the actor
81 |
82 | @end
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:74:50: note: mutation of this property is only permitted within the actor
72 | Color to be blended with the text based on the colorBlendFactor
73 | */
74 | @property (nonatomic, retain, nullable) SKColor *color;
| `- note: mutation of this property is only permitted within the actor
75 |
76 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:69:31: note: mutation of this property is only permitted within the actor
67 | Controls the blending between the rendered text and a color. The valid interval of values is from 0.0 up to and including 1.0. A value above or below that interval is clamped to the minimum (0.0) if below or the maximum (1.0) if above.
68 | */
69 | @property (nonatomic) CGFloat colorBlendFactor;
| `- note: mutation of this property is only permitted within the actor
70 |
71 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:64:50: note: mutation of this property is only permitted within the actor
62 | Base color that the text is rendered with (if supported by the font)
63 | */
64 | @property (nonatomic, retain, nullable) SKColor *fontColor;
| `- note: mutation of this property is only permitted within the actor
65 |
66 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:55:49: note: mutation of this property is only permitted within the actor
53 | @property(nonatomic) CGFloat preferredMaxLayoutWidth API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
54 |
55 | @property (nonatomic, copy, nullable) NSString *fontName;
| `- note: mutation of this property is only permitted within the actor
56 | @property (nonatomic, copy, nullable) NSString *text;
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:58:31: note: mutation of this property is only permitted within the actor
56 | @property (nonatomic, copy, nullable) NSString *text;
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
58 | @property (nonatomic) CGFloat fontSize;
| `- note: mutation of this property is only permitted within the actor
59 |
60 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:38:54: note: mutation of this property is only permitted within the actor
36 |
37 | @property (nonatomic) SKLabelVerticalAlignmentMode verticalAlignmentMode;
38 | @property (nonatomic) SKLabelHorizontalAlignmentMode horizontalAlignmentMode;
| `- note: mutation of this property is only permitted within the actor
39 |
40 | /**Determines the number of lines to draw. The default value is 1 (single line). A value of 0 means no limit.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:48:38: note: mutation of this property is only permitted within the actor
46 | Default is NSLineBreakByTruncatingTail
47 | */
48 | @property(nonatomic) NSLineBreakMode lineBreakMode API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
49 |
50 | /**If nonzero, this is used when determining layout width for multiline labels.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:43:32: note: mutation of this property is only permitted within the actor
41 | If the height of the text reaches the # of lines the text will be truncated using the line break mode.
42 | */
43 | @property(nonatomic) NSInteger numberOfLines API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
44 |
45 | /**Determines the line break mode for multiple lines.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:53:30: note: mutation of this property is only permitted within the actor
51 | Default is zero.
52 | */
53 | @property(nonatomic) CGFloat preferredMaxLayoutWidth API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
54 |
55 | @property (nonatomic, copy, nullable) NSString *fontName;
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:56:49: note: mutation of this property is only permitted within the actor
54 |
55 | @property (nonatomic, copy, nullable) NSString *fontName;
56 | @property (nonatomic, copy, nullable) NSString *text;
| `- note: mutation of this property is only permitted within the actor
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
58 | @property (nonatomic) CGFloat fontSize;
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:37:52: note: mutation of this property is only permitted within the actor
35 | - (instancetype)initWithFontNamed:(nullable NSString *)fontName;
36 |
37 | @property (nonatomic) SKLabelVerticalAlignmentMode verticalAlignmentMode;
| `- note: mutation of this property is only permitted within the actor
38 | @property (nonatomic) SKLabelHorizontalAlignmentMode horizontalAlignmentMode;
39 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:59:32: note: mutation of this property is only permitted within the actor
57 | @see lightColor
58 | */
59 | @property (nonatomic) SKColor *ambientColor;
| `- note: mutation of this property is only permitted within the actor
60 |
61 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:88:32: note: mutation of this property is only permitted within the actor
86 | @see SKSpriteNode.shadowedBitMask
87 | */
88 | @property (nonatomic) uint32_t categoryBitMask;
| `- note: mutation of this property is only permitted within the actor
89 |
90 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:77:31: note: mutation of this property is only permitted within the actor
75 | @see lightColor
76 | */
77 | @property (nonatomic) CGFloat falloff;
| `- note: mutation of this property is only permitted within the actor
78 |
79 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:33:48: note: mutation of this property is only permitted within the actor
31 | @see categoryBitMask
32 | */
33 | @property (nonatomic, getter = isEnabled) BOOL enabled;
| `- note: mutation of this property is only permitted within the actor
34 |
35 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:45:32: note: mutation of this property is only permitted within the actor
43 | @see falloff
44 | */
45 | @property (nonatomic) SKColor *lightColor;
| `- note: mutation of this property is only permitted within the actor
46 |
47 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:69:32: note: mutation of this property is only permitted within the actor
67 | @see SKSpriteNode.shadowedBitMask
68 | */
69 | @property (nonatomic) SKColor *shadowColor;
| `- note: mutation of this property is only permitted within the actor
70 |
71 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:108:31: note: mutation of this property is only permitted within the actor
106 | Alpha of this node (multiplied by the output color to give the final result)
107 | */
108 | @property (nonatomic) CGFloat alpha;
| `- note: mutation of this property is only permitted within the actor
109 |
110 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:118:47: note: mutation of this property is only permitted within the actor
116 | Controls whether or not the node and its children are rendered.
117 | */
118 | @property (nonatomic, getter = isHidden) BOOL hidden;
| `- note: mutation of this property is only permitted within the actor
119 |
120 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:113:47: note: mutation of this property is only permitted within the actor
111 | Controls whether or not the node's actions is updated or paused.
112 | */
113 | @property (nonatomic, getter = isPaused) BOOL paused;
| `- note: mutation of this property is only permitted within the actor
114 |
115 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:79:31: note: mutation of this property is only permitted within the actor
77 | The position of the node in the parent's coordinate system
78 | */
79 | @property (nonatomic) CGPoint position;
| `- note: mutation of this property is only permitted within the actor
80 |
81 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:103:31: note: mutation of this property is only permitted within the actor
101 | The speed multiplier applied to all actions run on this node. Inherited by its children.
102 | */
103 | @property (nonatomic) CGFloat speed;
| `- note: mutation of this property is only permitted within the actor
104 |
105 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:94:31: note: mutation of this property is only permitted within the actor
92 | The scaling in the X axis
93 | */
94 | @property (nonatomic) CGFloat xScale;
| `- note: mutation of this property is only permitted within the actor
95 | /**
96 | The scaling in the Y axis
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:98:31: note: mutation of this property is only permitted within the actor
96 | The scaling in the Y axis
97 | */
98 | @property (nonatomic) CGFloat yScale;
| `- note: mutation of this property is only permitted within the actor
99 |
100 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:84:31: note: mutation of this property is only permitted within the actor
82 | The z-order of the node (used for ordering). Negative z is "into" the screen, Positive z is "out" of the screen. A greater zPosition will sort in front of a lesser zPosition.
83 | */
84 | @property (nonatomic) CGFloat zPosition;
| `- note: mutation of this property is only permitted within the actor
85 |
86 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:89:31: note: mutation of this property is only permitted within the actor
87 | The Euler rotation about the z axis (in radians)
88 | */
89 | @property (nonatomic) CGFloat zRotation;
| `- note: mutation of this property is only permitted within the actor
90 |
91 | /**
[295/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:57:59: note: mutation of this property is only permitted within the actor
55 | @property (nonatomic, copy, nullable) NSString *fontName;
56 | @property (nonatomic, copy, nullable) NSString *text;
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
58 | @property (nonatomic) CGFloat fontSize;
59 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:80:35: note: mutation of this property is only permitted within the actor
78 | @see SKNode.SKBlendMode
79 | */
80 | @property (nonatomic) SKBlendMode blendMode;
| `- note: mutation of this property is only permitted within the actor
81 |
82 | @end
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:74:50: note: mutation of this property is only permitted within the actor
72 | Color to be blended with the text based on the colorBlendFactor
73 | */
74 | @property (nonatomic, retain, nullable) SKColor *color;
| `- note: mutation of this property is only permitted within the actor
75 |
76 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:69:31: note: mutation of this property is only permitted within the actor
67 | Controls the blending between the rendered text and a color. The valid interval of values is from 0.0 up to and including 1.0. A value above or below that interval is clamped to the minimum (0.0) if below or the maximum (1.0) if above.
68 | */
69 | @property (nonatomic) CGFloat colorBlendFactor;
| `- note: mutation of this property is only permitted within the actor
70 |
71 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:64:50: note: mutation of this property is only permitted within the actor
62 | Base color that the text is rendered with (if supported by the font)
63 | */
64 | @property (nonatomic, retain, nullable) SKColor *fontColor;
| `- note: mutation of this property is only permitted within the actor
65 |
66 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:55:49: note: mutation of this property is only permitted within the actor
53 | @property(nonatomic) CGFloat preferredMaxLayoutWidth API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
54 |
55 | @property (nonatomic, copy, nullable) NSString *fontName;
| `- note: mutation of this property is only permitted within the actor
56 | @property (nonatomic, copy, nullable) NSString *text;
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:58:31: note: mutation of this property is only permitted within the actor
56 | @property (nonatomic, copy, nullable) NSString *text;
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
58 | @property (nonatomic) CGFloat fontSize;
| `- note: mutation of this property is only permitted within the actor
59 |
60 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:38:54: note: mutation of this property is only permitted within the actor
36 |
37 | @property (nonatomic) SKLabelVerticalAlignmentMode verticalAlignmentMode;
38 | @property (nonatomic) SKLabelHorizontalAlignmentMode horizontalAlignmentMode;
| `- note: mutation of this property is only permitted within the actor
39 |
40 | /**Determines the number of lines to draw. The default value is 1 (single line). A value of 0 means no limit.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:48:38: note: mutation of this property is only permitted within the actor
46 | Default is NSLineBreakByTruncatingTail
47 | */
48 | @property(nonatomic) NSLineBreakMode lineBreakMode API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
49 |
50 | /**If nonzero, this is used when determining layout width for multiline labels.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:43:32: note: mutation of this property is only permitted within the actor
41 | If the height of the text reaches the # of lines the text will be truncated using the line break mode.
42 | */
43 | @property(nonatomic) NSInteger numberOfLines API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
44 |
45 | /**Determines the line break mode for multiple lines.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:53:30: note: mutation of this property is only permitted within the actor
51 | Default is zero.
52 | */
53 | @property(nonatomic) CGFloat preferredMaxLayoutWidth API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
| `- note: mutation of this property is only permitted within the actor
54 |
55 | @property (nonatomic, copy, nullable) NSString *fontName;
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:56:49: note: mutation of this property is only permitted within the actor
54 |
55 | @property (nonatomic, copy, nullable) NSString *fontName;
56 | @property (nonatomic, copy, nullable) NSString *text;
| `- note: mutation of this property is only permitted within the actor
57 | @property (nonatomic, copy, nullable) NSAttributedString *attributedText API_AVAILABLE(ios(11.0), tvos(11.0), macos(10.13), watchos(4.0));
58 | @property (nonatomic) CGFloat fontSize;
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLabelNode.h:37:52: note: mutation of this property is only permitted within the actor
35 | - (instancetype)initWithFontNamed:(nullable NSString *)fontName;
36 |
37 | @property (nonatomic) SKLabelVerticalAlignmentMode verticalAlignmentMode;
| `- note: mutation of this property is only permitted within the actor
38 | @property (nonatomic) SKLabelHorizontalAlignmentMode horizontalAlignmentMode;
39 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:59:32: note: mutation of this property is only permitted within the actor
57 | @see lightColor
58 | */
59 | @property (nonatomic) SKColor *ambientColor;
| `- note: mutation of this property is only permitted within the actor
60 |
61 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:88:32: note: mutation of this property is only permitted within the actor
86 | @see SKSpriteNode.shadowedBitMask
87 | */
88 | @property (nonatomic) uint32_t categoryBitMask;
| `- note: mutation of this property is only permitted within the actor
89 |
90 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:77:31: note: mutation of this property is only permitted within the actor
75 | @see lightColor
76 | */
77 | @property (nonatomic) CGFloat falloff;
| `- note: mutation of this property is only permitted within the actor
78 |
79 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:33:48: note: mutation of this property is only permitted within the actor
31 | @see categoryBitMask
32 | */
33 | @property (nonatomic, getter = isEnabled) BOOL enabled;
| `- note: mutation of this property is only permitted within the actor
34 |
35 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:45:32: note: mutation of this property is only permitted within the actor
43 | @see falloff
44 | */
45 | @property (nonatomic) SKColor *lightColor;
| `- note: mutation of this property is only permitted within the actor
46 |
47 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKLightNode.h:69:32: note: mutation of this property is only permitted within the actor
67 | @see SKSpriteNode.shadowedBitMask
68 | */
69 | @property (nonatomic) SKColor *shadowColor;
| `- note: mutation of this property is only permitted within the actor
70 |
71 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:108:31: note: mutation of this property is only permitted within the actor
106 | Alpha of this node (multiplied by the output color to give the final result)
107 | */
108 | @property (nonatomic) CGFloat alpha;
| `- note: mutation of this property is only permitted within the actor
109 |
110 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:118:47: note: mutation of this property is only permitted within the actor
116 | Controls whether or not the node and its children are rendered.
117 | */
118 | @property (nonatomic, getter = isHidden) BOOL hidden;
| `- note: mutation of this property is only permitted within the actor
119 |
120 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:113:47: note: mutation of this property is only permitted within the actor
111 | Controls whether or not the node's actions is updated or paused.
112 | */
113 | @property (nonatomic, getter = isPaused) BOOL paused;
| `- note: mutation of this property is only permitted within the actor
114 |
115 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:79:31: note: mutation of this property is only permitted within the actor
77 | The position of the node in the parent's coordinate system
78 | */
79 | @property (nonatomic) CGPoint position;
| `- note: mutation of this property is only permitted within the actor
80 |
81 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:103:31: note: mutation of this property is only permitted within the actor
101 | The speed multiplier applied to all actions run on this node. Inherited by its children.
102 | */
103 | @property (nonatomic) CGFloat speed;
| `- note: mutation of this property is only permitted within the actor
104 |
105 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:94:31: note: mutation of this property is only permitted within the actor
92 | The scaling in the X axis
93 | */
94 | @property (nonatomic) CGFloat xScale;
| `- note: mutation of this property is only permitted within the actor
95 | /**
96 | The scaling in the Y axis
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:98:31: note: mutation of this property is only permitted within the actor
96 | The scaling in the Y axis
97 | */
98 | @property (nonatomic) CGFloat yScale;
| `- note: mutation of this property is only permitted within the actor
99 |
100 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:84:31: note: mutation of this property is only permitted within the actor
82 | The z-order of the node (used for ordering). Negative z is "into" the screen, Positive z is "out" of the screen. A greater zPosition will sort in front of a lesser zPosition.
83 | */
84 | @property (nonatomic) CGFloat zPosition;
| `- note: mutation of this property is only permitted within the actor
85 |
86 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKNode.h:89:31: note: mutation of this property is only permitted within the actor
87 | The Euler rotation about the z axis (in radians)
88 | */
89 | @property (nonatomic) CGFloat zRotation;
| `- note: mutation of this property is only permitted within the actor
90 |
91 | /**
[296/301] Compiling RxSpriteKit SKPhysicsBody+Binder.swift
[297/301] Compiling RxSpriteKit SKPhysicsJoint+Binder.swift
[298/301] Compiling RxSpriteKit SKPhysicsJointLimit+Binder.swift
[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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:103:27: note: mutation of this property is only permitted within the actor
101 | @discussion When enabled, a diffuse light is automatically added and placed while rendering scenes that have no light or only ambient lights.
102 | */
103 | @property(nonatomic) BOOL autoenablesDefaultLighting;
| `- note: mutation of this property is only permitted within the actor
104 |
105 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:82:34: note: mutation of this property is only permitted within the actor
80 | @abstract Returns YES if the scene is playing, NO otherwise.
81 | */
82 | @property(getter=isPlaying) BOOL playing;
| `- note: mutation of this property is only permitted within the actor
83 |
84 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:89:27: note: mutation of this property is only permitted within the actor
87 | @discussion YES when the receiver restarts playback when it finishes, NO otherwise.
88 | */
89 | @property(nonatomic) BOOL loops;
| `- note: mutation of this property is only permitted within the actor
90 |
91 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:96:49: note: mutation of this property is only permitted within the actor
94 | @discussion A point of view must have either a camera or a spot light attached.
95 | */
96 | @property(nonatomic, retain, nullable) SCNNode *pointOfView;
| `- note: mutation of this property is only permitted within the actor
97 |
98 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:52:37: note: mutation of this property is only permitted within the actor
50 | @abstract Specifies the current time to display the scene.
51 | */
52 | @property(nonatomic) NSTimeInterval sceneTime;
| `- note: mutation of this property is only permitted within the actor
53 |
54 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:46:51: note: mutation of this property is only permitted within the actor
44 |
45 | /** A SceneKit scene */
46 | @property (nonatomic, retain, nullable) SCNScene *scnScene;
| `- note: mutation of this property is only permitted within the actor
47 |
48 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:43:18: note: mutation of this property is only permitted within the actor
41 |
42 | /** The viewport size that the 3D content will be rendered with */
43 | @property CGSize viewportSize;
| `- note: mutation of this property is only permitted within the actor
44 |
45 | /** A SceneKit scene */
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKAudioNode.h:59:36: note: mutation of this property is only permitted within the actor
57 | * @see SKView.paused
58 | */
59 | @property (nonatomic, assign) BOOL autoplayLooped;
| `- note: mutation of this property is only permitted within the actor
60 |
61 | /**Marks the audio source as positional so that the audio mix considers relative position and velocity
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKAudioNode.h:48:54: note: mutation of this property is only permitted within the actor
46 | /**Sets or gets the current AVAudioNode used by this instance.
47 | */
48 | @property (nonatomic, retain, nullable) AVAudioNode *avAudioNode;
| `- note: mutation of this property is only permitted within the actor
49 |
50 | /**Specifies whether the node is to automatically play sound when added to a scene.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKAudioNode.h:67:57: note: mutation of this property is only permitted within the actor
65 | * @see SKScene.listener
66 | */
67 | @property (nonatomic, assign, getter=isPositional) BOOL positional;
| `- note: mutation of this property is only permitted within the actor
68 |
69 | @end
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKCropNode.h:27:49: note: mutation of this property is only permitted within the actor
25 | The SKNode supplied as the mask must not be a child of another node, but it may have children. Anywhere the mask's output alpha component is less than 0.05 masks out that area for the SKCropNode's children. If the mask is nil, nothing is masked out.
26 | */
27 | @property (nonatomic, retain, nullable) SKNode *maskNode;
| `- note: mutation of this property is only permitted within the actor
28 |
29 | @end
[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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:103:27: note: mutation of this property is only permitted within the actor
101 | @discussion When enabled, a diffuse light is automatically added and placed while rendering scenes that have no light or only ambient lights.
102 | */
103 | @property(nonatomic) BOOL autoenablesDefaultLighting;
| `- note: mutation of this property is only permitted within the actor
104 |
105 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:82:34: note: mutation of this property is only permitted within the actor
80 | @abstract Returns YES if the scene is playing, NO otherwise.
81 | */
82 | @property(getter=isPlaying) BOOL playing;
| `- note: mutation of this property is only permitted within the actor
83 |
84 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:89:27: note: mutation of this property is only permitted within the actor
87 | @discussion YES when the receiver restarts playback when it finishes, NO otherwise.
88 | */
89 | @property(nonatomic) BOOL loops;
| `- note: mutation of this property is only permitted within the actor
90 |
91 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:96:49: note: mutation of this property is only permitted within the actor
94 | @discussion A point of view must have either a camera or a spot light attached.
95 | */
96 | @property(nonatomic, retain, nullable) SCNNode *pointOfView;
| `- note: mutation of this property is only permitted within the actor
97 |
98 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:52:37: note: mutation of this property is only permitted within the actor
50 | @abstract Specifies the current time to display the scene.
51 | */
52 | @property(nonatomic) NSTimeInterval sceneTime;
| `- note: mutation of this property is only permitted within the actor
53 |
54 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:46:51: note: mutation of this property is only permitted within the actor
44 |
45 | /** A SceneKit scene */
46 | @property (nonatomic, retain, nullable) SCNScene *scnScene;
| `- note: mutation of this property is only permitted within the actor
47 |
48 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:43:18: note: mutation of this property is only permitted within the actor
41 |
42 | /** The viewport size that the 3D content will be rendered with */
43 | @property CGSize viewportSize;
| `- note: mutation of this property is only permitted within the actor
44 |
45 | /** A SceneKit scene */
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKAudioNode.h:59:36: note: mutation of this property is only permitted within the actor
57 | * @see SKView.paused
58 | */
59 | @property (nonatomic, assign) BOOL autoplayLooped;
| `- note: mutation of this property is only permitted within the actor
60 |
61 | /**Marks the audio source as positional so that the audio mix considers relative position and velocity
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKAudioNode.h:48:54: note: mutation of this property is only permitted within the actor
46 | /**Sets or gets the current AVAudioNode used by this instance.
47 | */
48 | @property (nonatomic, retain, nullable) AVAudioNode *avAudioNode;
| `- note: mutation of this property is only permitted within the actor
49 |
50 | /**Specifies whether the node is to automatically play sound when added to a scene.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKAudioNode.h:67:57: note: mutation of this property is only permitted within the actor
65 | * @see SKScene.listener
66 | */
67 | @property (nonatomic, assign, getter=isPositional) BOOL positional;
| `- note: mutation of this property is only permitted within the actor
68 |
69 | @end
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKCropNode.h:27:49: note: mutation of this property is only permitted within the actor
25 | The SKNode supplied as the mask must not be a child of another node, but it may have children. Anywhere the mask's output alpha component is less than 0.05 masks out that area for the SKCropNode's children. If the mask is nil, nothing is masked out.
26 | */
27 | @property (nonatomic, retain, nullable) SKNode *maskNode;
| `- note: mutation of this property is only permitted within the actor
28 |
29 | @end
[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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:103:27: note: mutation of this property is only permitted within the actor
101 | @discussion When enabled, a diffuse light is automatically added and placed while rendering scenes that have no light or only ambient lights.
102 | */
103 | @property(nonatomic) BOOL autoenablesDefaultLighting;
| `- note: mutation of this property is only permitted within the actor
104 |
105 |
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:82:34: note: mutation of this property is only permitted within the actor
80 | @abstract Returns YES if the scene is playing, NO otherwise.
81 | */
82 | @property(getter=isPlaying) BOOL playing;
| `- note: mutation of this property is only permitted within the actor
83 |
84 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:89:27: note: mutation of this property is only permitted within the actor
87 | @discussion YES when the receiver restarts playback when it finishes, NO otherwise.
88 | */
89 | @property(nonatomic) BOOL loops;
| `- note: mutation of this property is only permitted within the actor
90 |
91 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:96:49: note: mutation of this property is only permitted within the actor
94 | @discussion A point of view must have either a camera or a spot light attached.
95 | */
96 | @property(nonatomic, retain, nullable) SCNNode *pointOfView;
| `- note: mutation of this property is only permitted within the actor
97 |
98 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:52:37: note: mutation of this property is only permitted within the actor
50 | @abstract Specifies the current time to display the scene.
51 | */
52 | @property(nonatomic) NSTimeInterval sceneTime;
| `- note: mutation of this property is only permitted within the actor
53 |
54 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:46:51: note: mutation of this property is only permitted within the actor
44 |
45 | /** A SceneKit scene */
46 | @property (nonatomic, retain, nullable) SCNScene *scnScene;
| `- note: mutation of this property is only permitted within the actor
47 |
48 | /**
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SK3DNode.h:43:18: note: mutation of this property is only permitted within the actor
41 |
42 | /** The viewport size that the 3D content will be rendered with */
43 | @property CGSize viewportSize;
| `- note: mutation of this property is only permitted within the actor
44 |
45 | /** A SceneKit scene */
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKAudioNode.h:59:36: note: mutation of this property is only permitted within the actor
57 | * @see SKView.paused
58 | */
59 | @property (nonatomic, assign) BOOL autoplayLooped;
| `- note: mutation of this property is only permitted within the actor
60 |
61 | /**Marks the audio source as positional so that the audio mix considers relative position and velocity
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKAudioNode.h:48:54: note: mutation of this property is only permitted within the actor
46 | /**Sets or gets the current AVAudioNode used by this instance.
47 | */
48 | @property (nonatomic, retain, nullable) AVAudioNode *avAudioNode;
| `- note: mutation of this property is only permitted within the actor
49 |
50 | /**Specifies whether the node is to automatically play sound when added to a scene.
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKAudioNode.h:67:57: note: mutation of this property is only permitted within the actor
65 | * @see SKScene.listener
66 | */
67 | @property (nonatomic, assign, getter=isPositional) BOOL positional;
| `- note: mutation of this property is only permitted within the actor
68 |
69 | @end
/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 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKCropNode.h:27:49: note: mutation of this property is only permitted within the actor
25 | The SKNode supplied as the mask must not be a child of another node, but it may have children. Anywhere the mask's output alpha component is less than 0.05 masks out that area for the SKCropNode's children. If the mask is nil, nothing is masked out.
26 | */
27 | @property (nonatomic, retain, nullable) SKNode *maskNode;
| `- note: mutation of this property is only permitted within the actor
28 |
29 | @end
Build complete! (20.54s)
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.