Build Information
Successful build of RxSpriteKit, reference master (40be0d
), with Swift 6.1 for macOS (SPM) on 24 Apr 2025 22:56:07 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
71 | }
72 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKFieldNode.h:89:52: note: mutation of this property is only permitted within the actor
87 | @see velocityFieldWithTexture:velocityTexture
88 | */
89 | @property (nonatomic, retain, nullable) SKTexture* texture;
| `- note: mutation of this property is only permitted within the actor
90 |
91 | /**
[297/301] Compiling RxSpriteKit SKEmitterNode+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:10:18: warning: main actor-isolated property 'attributeValues' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var attributeValues: Binder<[String: SKAttributeValue]> {
9 | return Binder(self.base) { view, attributeValues in
10 | view.attributeValues = attributeValues
| `- warning: main actor-isolated property 'attributeValues' 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/SKEffectNode.h:65:84: note: mutation of this property is only permitted within the actor
63 | Attributes can be used with custom SKShaders.
64 | */
65 | @property (nonatomic, nonnull, copy) NSDictionary<NSString *, SKAttributeValue *> *attributeValues API_AVAILABLE(ios(10.0), tvos(10.0), watchos(3.0), macos(10.12));
| `- note: mutation of this property is only permitted within the actor
66 |
67 | - (nullable SKAttributeValue*)valueForAttributeNamed:(nonnull NSString *)key API_AVAILABLE(ios(10.0), tvos(10.0), watchos(3.0), macos(10.12));
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+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/SKEffectNode.h:57:35: note: mutation of this property is only permitted within the actor
55 | @see SKNode.SKBlendMode
56 | */
57 | @property (nonatomic) SKBlendMode blendMode;
| `- note: mutation of this property is only permitted within the actor
58 |
59 | @property (nonatomic, retain, nullable) SKShader *shader;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:24:18: warning: main actor-isolated property 'filter' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
22 | public var filter: Binder<CIFilter?> {
23 | return Binder(self.base) { view, filter in
24 | view.filter = filter
| `- warning: main actor-isolated property 'filter' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
25 | }
26 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEffectNode.h:33:51: note: mutation of this property is only permitted within the actor
31 | Any CIFilter that requires only a single "inputImage" and produces an "outputImage" is allowed. The filter is applied to all children of the SKEffectNode. If the filter is nil, the children of this node is flattened before being drawn as long as the SKEffectNode is enabled.
32 | */
33 | @property (nonatomic, retain, nullable) CIFilter *filter;
| `- note: mutation of this property is only permitted within the actor
34 | #endif
35 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:32: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
30 | public var shader: Binder<SKShader?> {
31 | return Binder(self.base) { view, shader in
32 | 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
33 | }
34 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEffectNode.h:59:51: note: mutation of this property is only permitted within the actor
57 | @property (nonatomic) SKBlendMode blendMode;
58 |
59 | @property (nonatomic, retain, nullable) SKShader *shader;
| `- note: mutation of this property is only permitted within the actor
60 |
61 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:38:18: warning: main actor-isolated property 'shouldCenterFilter' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
36 | public var shouldCenterFilter: Binder<Bool> {
37 | return Binder(self.base) { view, shouldCenterFilter in
38 | view.shouldCenterFilter = shouldCenterFilter
| `- warning: main actor-isolated property 'shouldCenterFilter' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
39 | }
40 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEffectNode.h:37:28: note: mutation of this property is only permitted within the actor
35 |
36 | /* Controls whether the filter's "inputCenter" (if it exists) should automatically be set to the center of the effect area. Defaults to YES. */
37 | @property (nonatomic) BOOL shouldCenterFilter;
| `- note: mutation of this property is only permitted within the actor
38 |
39 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:44:18: warning: main actor-isolated property 'shouldEnableEffects' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
42 | public var shouldEnableEffects: Binder<Bool> {
43 | return Binder(self.base) { view, shouldEnableEffects in
44 | view.shouldEnableEffects = shouldEnableEffects
| `- warning: main actor-isolated property 'shouldEnableEffects' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
45 | }
46 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEffectNode.h:44:28: note: mutation of this property is only permitted within the actor
42 | The SKEffectNode has no effect when appliesEffects is not enabled, this is useful for setting up an effect to use later on. Defaults to YES.
43 | */
44 | @property (nonatomic) BOOL shouldEnableEffects;
| `- note: mutation of this property is only permitted within the actor
45 |
46 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:50:18: warning: main actor-isolated property 'shouldRasterize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
48 | public var shouldRasterize: Binder<Bool> {
49 | return Binder(self.base) { view, shouldRasterize in
50 | view.shouldRasterize = shouldRasterize
| `- warning: main actor-isolated property 'shouldRasterize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
51 | }
52 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEffectNode.h:51:28: note: mutation of this property is only permitted within the actor
49 | The SKEffectNode's output is rasterized and cached internally. This cache is reused when rendering. When the SKEffectNode's children change, the cache is updated, but changing properties on the CIFilter does *not* cause an update (you must disable rasterization and then re-enable it for the changes to apply). This is more expensive than not rasterizing if the node's children change frequently, only enable this option if you know the children is largely static.
50 | */
51 | @property (nonatomic) BOOL shouldRasterize;
| `- note: mutation of this property is only permitted within the actor
52 |
53 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:10:18: warning: main actor-isolated property 'attributeValues' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var attributeValues: Binder<[String: SKAttributeValue]> {
9 | return Binder(self.base) { view, attributeValues in
10 | view.attributeValues = attributeValues
| `- warning: main actor-isolated property 'attributeValues' 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/SKEmitterNode.h:226:84: note: mutation of this property is only permitted within the actor
224 | Attributes can be used with custom SKShaders.
225 | */
226 | @property (nonatomic, nonnull, copy) NSDictionary<NSString *, SKAttributeValue *> *attributeValues API_AVAILABLE(ios(10.0), tvos(10.0), watchos(3.0), macos(10.12));
| `- note: mutation of this property is only permitted within the actor
227 |
228 | - (nullable SKAttributeValue*)valueForAttributeNamed:(nonnull NSString *)key API_AVAILABLE(ios(10.0), tvos(10.0), watchos(3.0), macos(10.12));
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:16:18: warning: main actor-isolated property 'emissionAngle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var emissionAngle: Binder<CGFloat> {
15 | return Binder(self.base) { view, emissionAngle in
16 | view.emissionAngle = emissionAngle
| `- warning: main actor-isolated property 'emissionAngle' 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/SKEmitterNode.h:114:31: note: mutation of this property is only permitted within the actor
112 | The angle at which to emit each new particle, in radians. Defaults to 0.0.
113 | */
114 | @property (nonatomic) CGFloat emissionAngle;
| `- note: mutation of this property is only permitted within the actor
115 |
116 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:22:18: warning: main actor-isolated property 'emissionAngleRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var emissionAngleRange: Binder<CGFloat> {
21 | return Binder(self.base) { view, emissionAngleRange in
22 | view.emissionAngleRange = emissionAngleRange
| `- warning: main actor-isolated property 'emissionAngleRange' 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/SKEmitterNode.h:119:31: note: mutation of this property is only permitted within the actor
117 | The random variance about the angle at which to emit each new particle, in radians. Defaults to 0.0.
118 | */
119 | @property (nonatomic) CGFloat emissionAngleRange;
| `- note: mutation of this property is only permitted within the actor
120 |
121 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:28:18: warning: main actor-isolated property 'fieldBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var fieldBitMask: Binder<UInt32> {
27 | return Binder(self.base) { view, fieldBitMask in
28 | view.fieldBitMask = fieldBitMask
| `- warning: main actor-isolated property 'fieldBitMask' 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/SKEmitterNode.h:213:40: note: mutation of this property is only permitted within the actor
211 | Can be forced off via affectedByGravity.
212 | */
213 | @property (nonatomic, assign) uint32_t fieldBitMask;
| `- note: mutation of this property is only permitted within the actor
214 |
215 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:34:18: warning: main actor-isolated property 'numParticlesToEmit' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var numParticlesToEmit: Binder<Int> {
33 | return Binder(self.base) { view, numParticlesToEmit in
34 | view.numParticlesToEmit = numParticlesToEmit
| `- warning: main actor-isolated property 'numParticlesToEmit' 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/SKEmitterNode.h:137:34: note: mutation of this property is only permitted within the actor
135 | The number of particles that will be emitted. If set to 0, there is no limit. Defaults to 0.
136 | */
137 | @property (nonatomic) NSUInteger numParticlesToEmit;
| `- note: mutation of this property is only permitted within the actor
138 |
139 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:40:18: warning: main actor-isolated property 'particleAction' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var particleAction: Binder<SKAction?> {
39 | return Binder(self.base) { view, particleAction in
40 | view.particleAction = particleAction
| `- warning: main actor-isolated property 'particleAction' 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/SKEmitterNode.h:207:49: note: mutation of this property is only permitted within the actor
205 | Specifies an action executed by new particles.
206 | */
207 | @property (nonatomic, copy, nullable) SKAction *particleAction;
| `- note: mutation of this property is only permitted within the actor
208 |
209 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:46:18: warning: main actor-isolated property 'particleAlpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var particleAlpha: Binder<CGFloat> {
45 | return Binder(self.base) { view, particleAlpha in
46 | view.particleAlpha = particleAlpha
| `- warning: main actor-isolated property 'particleAlpha' 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/SKEmitterNode.h:190:31: note: mutation of this property is only permitted within the actor
188 | The starting alpha for each particle. Defaults to 1.0.
189 | */
190 | @property (nonatomic) CGFloat particleAlpha;
| `- note: mutation of this property is only permitted within the actor
191 |
192 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:52:18: warning: main actor-isolated property 'particleAlphaRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var particleAlphaRange: Binder<CGFloat> {
51 | return Binder(self.base) { view, particleAlphaRange in
52 | view.particleAlphaRange = particleAlphaRange
| `- warning: main actor-isolated property 'particleAlphaRange' 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/SKEmitterNode.h:195:31: note: mutation of this property is only permitted within the actor
193 | The random variance about the starting alpha for each particle. Defaults to 1.0.
194 | */
195 | @property (nonatomic) CGFloat particleAlphaRange;
| `- note: mutation of this property is only permitted within the actor
196 |
197 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:58:18: warning: main actor-isolated property 'particleAlphaSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var particleAlphaSequence: Binder<SKKeyframeSequence?> {
57 | return Binder(self.base) { view, particleAlphaSequence in
58 | view.particleAlphaSequence = particleAlphaSequence
| `- warning: main actor-isolated property 'particleAlphaSequence' 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/SKEmitterNode.h:202:61: note: mutation of this property is only permitted within the actor
200 | @property (nonatomic) CGFloat particleAlphaSpeed;
201 |
202 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleAlphaSequence;
| `- note: mutation of this property is only permitted within the actor
203 |
204 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:64:18: warning: main actor-isolated property 'particleAlphaSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var particleAlphaSpeed: Binder<CGFloat> {
63 | return Binder(self.base) { view, particleAlphaSpeed in
64 | view.particleAlphaSpeed = particleAlphaSpeed
| `- warning: main actor-isolated property 'particleAlphaSpeed' 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/SKEmitterNode.h:200:31: note: mutation of this property is only permitted within the actor
198 | The rate at which to modify the alpha for each particle. Defaults to 1.0.
199 | */
200 | @property (nonatomic) CGFloat particleAlphaSpeed;
| `- note: mutation of this property is only permitted within the actor
201 |
202 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleAlphaSequence;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:70:18: warning: main actor-isolated property 'particleBirthRate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | public var particleBirthRate: Binder<CGFloat> {
69 | return Binder(self.base) { view, particleBirthRate in
70 | view.particleBirthRate = particleBirthRate
| `- warning: main actor-isolated property 'particleBirthRate' 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/SKEmitterNode.h:131:31: note: mutation of this property is only permitted within the actor
129 | The rate at which new particles are generated, in particles per second. Defaults to 0.0.
130 | */
131 | @property (nonatomic) CGFloat particleBirthRate;
| `- note: mutation of this property is only permitted within the actor
132 |
133 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:76:18: warning: main actor-isolated property 'particleBlendMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
74 | public var particleBlendMode: Binder<SKBlendMode> {
75 | return Binder(self.base) { view, particleBlendMode in
76 | view.particleBlendMode = particleBlendMode
| `- warning: main actor-isolated property 'particleBlendMode' 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/SKEmitterNode.h:48:35: note: mutation of this property is only permitted within the actor
46 | The blend mode for each particle. Defaults to SKBlendModeAlpha.
47 | */
48 | @property (nonatomic) SKBlendMode particleBlendMode;
| `- note: mutation of this property is only permitted within the actor
49 |
50 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:82:18: warning: main actor-isolated property 'particleColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
80 | public var particleColor: Binder<RSKColor> {
81 | return Binder(self.base) { view, particleColor in
82 | view.particleColor = particleColor
| `- warning: main actor-isolated property 'particleColor' 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/SKEmitterNode.h:53:40: note: mutation of this property is only permitted within the actor
51 | The starting color for each particle. Defaults to clear.
52 | */
53 | @property (nonatomic, retain) SKColor *particleColor;
| `- note: mutation of this property is only permitted within the actor
54 |
55 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:88:18: warning: main actor-isolated property 'particleColorAlphaRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
86 | public var particleColorAlphaRange: Binder<CGFloat> {
87 | return Binder(self.base) { view, particleColorAlphaRange in
88 | view.particleColorAlphaRange = particleColorAlphaRange
| `- warning: main actor-isolated property 'particleColorAlphaRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
89 | }
90 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:61:31: note: mutation of this property is only permitted within the actor
59 | @property (nonatomic) CGFloat particleColorGreenRange;
60 | @property (nonatomic) CGFloat particleColorBlueRange;
61 | @property (nonatomic) CGFloat particleColorAlphaRange;
| `- note: mutation of this property is only permitted within the actor
62 |
63 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:94:18: warning: main actor-isolated property 'particleColorAlphaSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
92 | public var particleColorAlphaSpeed: Binder<CGFloat> {
93 | return Binder(self.base) { view, particleColorAlphaSpeed in
94 | view.particleColorAlphaSpeed = particleColorAlphaSpeed
| `- warning: main actor-isolated property 'particleColorAlphaSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
95 | }
96 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:69:31: note: mutation of this property is only permitted within the actor
67 | @property (nonatomic) CGFloat particleColorGreenSpeed;
68 | @property (nonatomic) CGFloat particleColorBlueSpeed;
69 | @property (nonatomic) CGFloat particleColorAlphaSpeed;
| `- note: mutation of this property is only permitted within the actor
70 |
71 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleColorSequence;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:100:18: warning: main actor-isolated property 'particleColorBlendFactor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
98 | public var particleColorBlendFactor: Binder<CGFloat> {
99 | return Binder(self.base) { view, particleColorBlendFactor in
100 | view.particleColorBlendFactor = particleColorBlendFactor
| `- warning: main actor-isolated property 'particleColorBlendFactor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
101 | }
102 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:76:31: note: mutation of this property is only permitted within the actor
74 | The starting color blend for each particle. Behaves the same as SKSpriteNode. Defaults to 0.0.
75 | */
76 | @property (nonatomic) CGFloat particleColorBlendFactor;
| `- note: mutation of this property is only permitted within the actor
77 |
78 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:106:18: warning: main actor-isolated property 'particleColorBlendFactorRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
104 | public var particleColorBlendFactorRange: Binder<CGFloat> {
105 | return Binder(self.base) { view, particleColorBlendFactorRange in
106 | view.particleColorBlendFactorRange = particleColorBlendFactorRange
| `- warning: main actor-isolated property 'particleColorBlendFactorRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
107 | }
108 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:81:31: note: mutation of this property is only permitted within the actor
79 | The random variance about the starting color blend for each particle. Defaults to 0.0.
80 | */
81 | @property (nonatomic) CGFloat particleColorBlendFactorRange;
| `- note: mutation of this property is only permitted within the actor
82 |
83 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:112:18: warning: main actor-isolated property 'particleColorBlendFactorSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 | public var particleColorBlendFactorSequence: Binder<SKKeyframeSequence?> {
111 | return Binder(self.base) { view, particleColorBlendFactorSequence in
112 | view.particleColorBlendFactorSequence = particleColorBlendFactorSequence
| `- warning: main actor-isolated property 'particleColorBlendFactorSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
113 | }
114 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:88:61: note: mutation of this property is only permitted within the actor
86 | @property (nonatomic) CGFloat particleColorBlendFactorSpeed;
87 |
88 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleColorBlendFactorSequence;
| `- note: mutation of this property is only permitted within the actor
89 |
90 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:118:18: warning: main actor-isolated property 'particleColorBlendFactorSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
116 | public var particleColorBlendFactorSpeed: Binder<CGFloat> {
117 | return Binder(self.base) { view, particleColorBlendFactorSpeed in
118 | view.particleColorBlendFactorSpeed = particleColorBlendFactorSpeed
| `- warning: main actor-isolated property 'particleColorBlendFactorSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
119 | }
120 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:86:31: note: mutation of this property is only permitted within the actor
84 | The rate at which to modify the color blend for each particle. Defaults to 0.0.
85 | */
86 | @property (nonatomic) CGFloat particleColorBlendFactorSpeed;
| `- note: mutation of this property is only permitted within the actor
87 |
88 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleColorBlendFactorSequence;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:124:18: warning: main actor-isolated property 'particleColorBlueRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
122 | public var particleColorBlueRange: Binder<CGFloat> {
123 | return Binder(self.base) { view, particleColorBlueRange in
124 | view.particleColorBlueRange = particleColorBlueRange
| `- warning: main actor-isolated property 'particleColorBlueRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
125 | }
126 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:60:31: note: mutation of this property is only permitted within the actor
58 | @property (nonatomic) CGFloat particleColorRedRange;
59 | @property (nonatomic) CGFloat particleColorGreenRange;
60 | @property (nonatomic) CGFloat particleColorBlueRange;
| `- note: mutation of this property is only permitted within the actor
61 | @property (nonatomic) CGFloat particleColorAlphaRange;
62 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:130:18: warning: main actor-isolated property 'particleColorBlueSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
128 | public var particleColorBlueSpeed: Binder<CGFloat> {
129 | return Binder(self.base) { view, particleColorBlueSpeed in
130 | view.particleColorBlueSpeed = particleColorBlueSpeed
| `- warning: main actor-isolated property 'particleColorBlueSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
131 | }
132 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:68:31: note: mutation of this property is only permitted within the actor
66 | @property (nonatomic) CGFloat particleColorRedSpeed;
67 | @property (nonatomic) CGFloat particleColorGreenSpeed;
68 | @property (nonatomic) CGFloat particleColorBlueSpeed;
| `- note: mutation of this property is only permitted within the actor
69 | @property (nonatomic) CGFloat particleColorAlphaSpeed;
70 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:136:18: warning: main actor-isolated property 'particleColorGreenRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
134 | public var particleColorGreenRange: Binder<CGFloat> {
135 | return Binder(self.base) { view, particleColorGreenRange in
136 | view.particleColorGreenRange = particleColorGreenRange
| `- warning: main actor-isolated property 'particleColorGreenRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 | }
138 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:59:31: note: mutation of this property is only permitted within the actor
57 | */
58 | @property (nonatomic) CGFloat particleColorRedRange;
59 | @property (nonatomic) CGFloat particleColorGreenRange;
| `- note: mutation of this property is only permitted within the actor
60 | @property (nonatomic) CGFloat particleColorBlueRange;
61 | @property (nonatomic) CGFloat particleColorAlphaRange;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:142:18: warning: main actor-isolated property 'particleColorGreenSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
140 | public var particleColorGreenSpeed: Binder<CGFloat> {
141 | return Binder(self.base) { view, particleColorGreenSpeed in
142 | view.particleColorGreenSpeed = particleColorGreenSpeed
| `- warning: main actor-isolated property 'particleColorGreenSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
143 | }
144 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:67:31: note: mutation of this property is only permitted within the actor
65 | */
66 | @property (nonatomic) CGFloat particleColorRedSpeed;
67 | @property (nonatomic) CGFloat particleColorGreenSpeed;
| `- note: mutation of this property is only permitted within the actor
68 | @property (nonatomic) CGFloat particleColorBlueSpeed;
69 | @property (nonatomic) CGFloat particleColorAlphaSpeed;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:148:18: warning: main actor-isolated property 'particleColorRedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
146 | public var particleColorRedRange: Binder<CGFloat> {
147 | return Binder(self.base) { view, particleColorRedRange in
148 | view.particleColorRedRange = particleColorRedRange
| `- warning: main actor-isolated property 'particleColorRedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
149 | }
150 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:58:31: note: mutation of this property is only permitted within the actor
56 | The random variance about each color component for each particle. Defaults to 0.0.
57 | */
58 | @property (nonatomic) CGFloat particleColorRedRange;
| `- note: mutation of this property is only permitted within the actor
59 | @property (nonatomic) CGFloat particleColorGreenRange;
60 | @property (nonatomic) CGFloat particleColorBlueRange;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:154:18: warning: main actor-isolated property 'particleColorRedSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
152 | public var particleColorRedSpeed: Binder<CGFloat> {
153 | return Binder(self.base) { view, particleColorRedSpeed in
154 | view.particleColorRedSpeed = particleColorRedSpeed
| `- warning: main actor-isolated property 'particleColorRedSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
155 | }
156 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:66:31: note: mutation of this property is only permitted within the actor
64 | The rate at which to modify each color component for each particle (per second).
65 | */
66 | @property (nonatomic) CGFloat particleColorRedSpeed;
| `- note: mutation of this property is only permitted within the actor
67 | @property (nonatomic) CGFloat particleColorGreenSpeed;
68 | @property (nonatomic) CGFloat particleColorBlueSpeed;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:160:18: warning: main actor-isolated property 'particleColorSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
158 | public var particleColorSequence: Binder<SKKeyframeSequence?> {
159 | return Binder(self.base) { view, particleColorSequence in
160 | view.particleColorSequence = particleColorSequence
| `- warning: main actor-isolated property 'particleColorSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
161 | }
162 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:71:61: note: mutation of this property is only permitted within the actor
69 | @property (nonatomic) CGFloat particleColorAlphaSpeed;
70 |
71 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleColorSequence;
| `- note: mutation of this property is only permitted within the actor
72 |
73 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:166:18: warning: main actor-isolated property 'particleLifetime' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
164 | public var particleLifetime: Binder<CGFloat> {
165 | return Binder(self.base) { view, particleLifetime in
166 | view.particleLifetime = particleLifetime
| `- warning: main actor-isolated property 'particleLifetime' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
167 | }
168 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:142:31: note: mutation of this property is only permitted within the actor
140 | The lifetime of each particle, in seconds. Defaults to 0.0.
141 | */
142 | @property (nonatomic) CGFloat particleLifetime;
| `- note: mutation of this property is only permitted within the actor
143 |
144 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:172:18: warning: main actor-isolated property 'particleLifetimeRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
170 | public var particleLifetimeRange: Binder<CGFloat> {
171 | return Binder(self.base) { view, particleLifetimeRange in
172 | view.particleLifetimeRange = particleLifetimeRange
| `- warning: main actor-isolated property 'particleLifetimeRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
173 | }
174 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:147:31: note: mutation of this property is only permitted within the actor
145 | The random variance about the lifetime of each particle, in seconds. Defaults to 0.0.
146 | */
147 | @property (nonatomic) CGFloat particleLifetimeRange;
| `- note: mutation of this property is only permitted within the actor
148 |
149 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:178:18: warning: main actor-isolated property 'particlePosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
176 | public var particlePosition: Binder<CGPoint> {
177 | return Binder(self.base) { view, particlePosition in
178 | view.particlePosition = particlePosition
| `- warning: main actor-isolated property 'particlePosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
179 | }
180 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:93:31: note: mutation of this property is only permitted within the actor
91 | The starting position for each particle in the emitter's coordinate space. Defaults to (0.0, 0,0).
92 | */
93 | @property (nonatomic) CGPoint particlePosition;
| `- note: mutation of this property is only permitted within the actor
94 |
95 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:184:18: warning: main actor-isolated property 'particlePositionRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
182 | public var particlePositionRange: Binder<CGVector> {
183 | return Binder(self.base) { view, particlePositionRange in
184 | view.particlePositionRange = particlePositionRange
| `- warning: main actor-isolated property 'particlePositionRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
185 | }
186 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:98:32: note: mutation of this property is only permitted within the actor
96 | The random variance about the starting position for each particle in the emitter's coordinate space. Defaults to (0.0, 0,0).
97 | */
98 | @property (nonatomic) CGVector particlePositionRange;
| `- note: mutation of this property is only permitted within the actor
99 |
100 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:190:18: warning: main actor-isolated property 'particleRenderOrder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
188 | public var particleRenderOrder: Binder<SKParticleRenderOrder> {
189 | return Binder(self.base) { view, particleRenderOrder in
190 | view.particleRenderOrder = particleRenderOrder
| `- warning: main actor-isolated property 'particleRenderOrder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
191 | }
192 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:240:45: note: mutation of this property is only permitted within the actor
238 | The order in which particles will be rendered. Defaults to SKParticleRenderOrderOldestLast.
239 | */
240 | @property (nonatomic) SKParticleRenderOrder particleRenderOrder API_AVAILABLE(ios(9.0), tvos(9.0), watchos(2.0), macos(10.11));
| `- note: mutation of this property is only permitted within the actor
241 |
242 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:196:18: warning: main actor-isolated property 'particleRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
194 | public var particleRotation: Binder<CGFloat> {
195 | return Binder(self.base) { view, particleRotation in
196 | view.particleRotation = particleRotation
| `- warning: main actor-isolated property 'particleRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
197 | }
198 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:153:31: note: mutation of this property is only permitted within the actor
151 | The starting z-rotation for each particle. Defaults to 0.0.
152 | */
153 | @property (nonatomic) CGFloat particleRotation;
| `- note: mutation of this property is only permitted within the actor
154 |
155 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:202:18: warning: main actor-isolated property 'particleRotationRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
200 | public var particleRotationRange: Binder<CGFloat> {
201 | return Binder(self.base) { view, particleRotationRange in
202 | view.particleRotationRange = particleRotationRange
| `- warning: main actor-isolated property 'particleRotationRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
203 | }
204 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:158:31: note: mutation of this property is only permitted within the actor
156 | The random variance about the starting z-rotation for each particle. Defaults to 0.0.
157 | */
158 | @property (nonatomic) CGFloat particleRotationRange;
| `- note: mutation of this property is only permitted within the actor
159 |
160 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:208:18: warning: main actor-isolated property 'particleRotationSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
206 | public var particleRotationSpeed: Binder<CGFloat> {
207 | return Binder(self.base) { view, particleRotationSpeed in
208 | view.particleRotationSpeed = particleRotationSpeed
| `- warning: main actor-isolated property 'particleRotationSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
209 | }
210 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:163:31: note: mutation of this property is only permitted within the actor
161 | The rate at which to modify the z-rotation for each particle. Defaults to 0.0.
162 | */
163 | @property (nonatomic) CGFloat particleRotationSpeed;
| `- note: mutation of this property is only permitted within the actor
164 |
165 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:214:18: warning: main actor-isolated property 'particleScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
212 | public var particleScale: Binder<CGFloat> {
213 | return Binder(self.base) { view, particleScale in
214 | view.particleScale = particleScale
| `- warning: main actor-isolated property 'particleScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
215 | }
216 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:173:31: note: mutation of this property is only permitted within the actor
171 | The starting scale for each particle. Defaults to 1.0.
172 | */
173 | @property (nonatomic) CGFloat particleScale;
| `- note: mutation of this property is only permitted within the actor
174 |
175 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:220:18: warning: main actor-isolated property 'particleScaleRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
218 | public var particleScaleRange: Binder<CGFloat> {
219 | return Binder(self.base) { view, particleScaleRange in
220 | view.particleScaleRange = particleScaleRange
| `- warning: main actor-isolated property 'particleScaleRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
221 | }
222 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:178:31: note: mutation of this property is only permitted within the actor
176 | The random variance about the starting scale for each particle. Defaults to 0.0.
177 | */
178 | @property (nonatomic) CGFloat particleScaleRange;
| `- note: mutation of this property is only permitted within the actor
179 |
180 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:226:18: warning: main actor-isolated property 'particleScaleSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
224 | public var particleScaleSequence: Binder<SKKeyframeSequence?> {
225 | return Binder(self.base) { view, particleScaleSequence in
226 | view.particleScaleSequence = particleScaleSequence
| `- warning: main actor-isolated property 'particleScaleSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
227 | }
228 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:185:61: note: mutation of this property is only permitted within the actor
183 | @property (nonatomic) CGFloat particleScaleSpeed;
184 |
185 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleScaleSequence;
| `- note: mutation of this property is only permitted within the actor
186 |
187 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:232:18: warning: main actor-isolated property 'particleScaleSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
230 | public var particleScaleSpeed: Binder<CGFloat> {
231 | return Binder(self.base) { view, particleScaleSpeed in
232 | view.particleScaleSpeed = particleScaleSpeed
| `- warning: main actor-isolated property 'particleScaleSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
233 | }
234 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:183:31: note: mutation of this property is only permitted within the actor
181 | The rate at which to modify the scale for each particle. Defaults to 0.0.
182 | */
183 | @property (nonatomic) CGFloat particleScaleSpeed;
| `- note: mutation of this property is only permitted within the actor
184 |
185 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleScaleSequence;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:238:18: warning: main actor-isolated property 'particleSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
236 | public var particleSize: Binder<CGSize> {
237 | return Binder(self.base) { view, particleSize in
238 | view.particleSize = particleSize
| `- warning: main actor-isolated property 'particleSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
239 | }
240 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:168:30: note: mutation of this property is only permitted within the actor
166 | The starting size for each particle. If set to CGSizeZero (the default) the particles will start at the size of the texture assigned to particleTexture. Note that particleScale and particleScaleRange will also have an effect on the effective size of each new particle.
167 | */
168 | @property (nonatomic) CGSize particleSize;
| `- note: mutation of this property is only permitted within the actor
169 |
170 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:244:18: warning: main actor-isolated property 'particleSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
242 | public var particleSpeed: Binder<CGFloat> {
243 | return Binder(self.base) { view, particleSpeed in
244 | view.particleSpeed = particleSpeed
| `- warning: main actor-isolated property 'particleSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
245 | }
246 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:104:31: note: mutation of this property is only permitted within the actor
102 | The starting speed for each particle along its emission vector. Defaults to 0.0.
103 | */
104 | @property (nonatomic) CGFloat particleSpeed;
| `- note: mutation of this property is only permitted within the actor
105 |
106 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:250:18: warning: main actor-isolated property 'particleSpeedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
248 | public var particleSpeedRange: Binder<CGFloat> {
249 | return Binder(self.base) { view, particleSpeedRange in
250 | view.particleSpeedRange = particleSpeedRange
| `- warning: main actor-isolated property 'particleSpeedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
251 | }
252 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:109:31: note: mutation of this property is only permitted within the actor
107 | The random variance about the starting speed for each particle along its emission vector. Defaults to 0.0.
108 | */
109 | @property (nonatomic) CGFloat particleSpeedRange;
| `- note: mutation of this property is only permitted within the actor
110 |
111 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:256:18: warning: main actor-isolated property 'particleTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
254 | public var particleTexture: Binder<SKTexture?> {
255 | return Binder(self.base) { view, particleTexture in
256 | view.particleTexture = particleTexture
| `- warning: main actor-isolated property 'particleTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
257 | }
258 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:42:52: note: mutation of this property is only permitted within the actor
40 | The texture to be used for the particles.
41 | */
42 | @property (nonatomic, retain, nullable) SKTexture *particleTexture;
| `- note: mutation of this property is only permitted within the actor
43 |
44 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:262:18: warning: main actor-isolated property 'particleZPosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
260 | public var particleZPosition: Binder<CGFloat> {
261 | return Binder(self.base) { view, particleZPosition in
262 | view.particleZPosition = particleZPosition
| `- warning: main actor-isolated property 'particleZPosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
263 | }
264 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:235:31: note: mutation of this property is only permitted within the actor
233 | The starting z-position for each particle. Defaults to 0.0.
234 | */
235 | @property (nonatomic) CGFloat particleZPosition;
| `- note: mutation of this property is only permitted within the actor
236 |
237 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:268: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
266 | public var shader: Binder<SKShader?> {
267 | return Binder(self.base) { view, shader in
268 | 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
269 | }
270 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:220:51: note: mutation of this property is only permitted within the actor
218 | @property (nonatomic, weak, nullable) SKNode *targetNode;
219 |
220 | @property (nonatomic, retain, nullable) SKShader *shader;
| `- note: mutation of this property is only permitted within the actor
221 |
222 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:274:18: warning: main actor-isolated property 'targetNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
272 | public var targetNode: Binder<SKNode?> {
273 | return Binder(self.base) { view, targetNode in
274 | view.targetNode = targetNode
| `- warning: main actor-isolated property 'targetNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
275 | }
276 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:218:47: note: mutation of this property is only permitted within the actor
216 | Normally the particles are rendered as if they were a child of the SKEmitterNode, they can also be rendered as if they were a child of any other node in the scene by setting the targetNode property. Defaults to nil (standard behavior).
217 | */
218 | @property (nonatomic, weak, nullable) SKNode *targetNode;
| `- note: mutation of this property is only permitted within the actor
219 |
220 | @property (nonatomic, retain, nullable) SKShader *shader;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:280:18: warning: main actor-isolated property 'xAcceleration' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
278 | public var xAcceleration: Binder<CGFloat> {
279 | return Binder(self.base) { view, xAcceleration in
280 | view.xAcceleration = xAcceleration
| `- warning: main actor-isolated property 'xAcceleration' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
281 | }
282 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:124:31: note: mutation of this property is only permitted within the actor
122 | The acceleration to apply to each particles velocity. Useful for simulating effects such as wind or gravity. Defaults to 0.0.
123 | */
124 | @property (nonatomic) CGFloat xAcceleration;
| `- note: mutation of this property is only permitted within the actor
125 | @property (nonatomic) CGFloat yAcceleration;
126 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:286:18: warning: main actor-isolated property 'yAcceleration' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
284 | public var yAcceleration: Binder<CGFloat> {
285 | return Binder(self.base) { view, yAcceleration in
286 | view.yAcceleration = yAcceleration
| `- warning: main actor-isolated property 'yAcceleration' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
287 | }
288 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:125:31: note: mutation of this property is only permitted within the actor
123 | */
124 | @property (nonatomic) CGFloat xAcceleration;
125 | @property (nonatomic) CGFloat yAcceleration;
| `- note: mutation of this property is only permitted within the actor
126 |
127 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:10:18: warning: main actor-isolated property 'animationSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var animationSpeed: Binder<Float> {
9 | return Binder(self.base) { view, animationSpeed in
10 | view.animationSpeed = animationSpeed
| `- warning: main actor-isolated property 'animationSpeed' 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/SKFieldNode.h:83:29: note: mutation of this property is only permitted within the actor
81 | @see turbulenceFieldWithSmoothness:smoothness:animationSpeed
82 | */
83 | @property (nonatomic) float animationSpeed;
| `- note: mutation of this property is only permitted within the actor
84 |
85 | /** fields constructed with a texture can be uppdated by assigning a new texture
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+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/SKFieldNode.h:60:32: note: mutation of this property is only permitted within the actor
58 | @see SKEmitterNode.fieldBitMask
59 | */
60 | @property (nonatomic) uint32_t categoryBitMask;
| `- note: mutation of this property is only permitted within the actor
61 |
62 | /** directed fields' directions can be accessed here. If the field is non-directional, a zero vector will be returned
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:22:18: warning: main actor-isolated property 'direction' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var direction: Binder<vector_float3> {
21 | return Binder(self.base) { view, direction in
22 | view.direction = direction
| `- warning: main actor-isolated property 'direction' 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/SKFieldNode.h:67:37: note: mutation of this property is only permitted within the actor
65 | @see velocityFieldWithVector:direction
66 | */
67 | @property (nonatomic) vector_float3 direction;
| `- note: mutation of this property is only permitted within the actor
68 |
69 | /** fields without a smoothness component will return 0
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:28: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
26 | public var falloff: Binder<Float> {
27 | return Binder(self.base) { view, falloff in
28 | 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
29 | }
30 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKFieldNode.h:35:29: note: mutation of this property is only permitted within the actor
33 | @see minimumRadius
34 | */
35 | @property (nonatomic) float falloff;
| `- note: mutation of this property is only permitted within the actor
36 |
37 | /** minimum radius of effect. Default is very small. */
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:34: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
32 | public var isEnabled: Binder<Bool> {
33 | return Binder(self.base) { view, isEnabled in
34 | 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
35 | }
36 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKFieldNode.h:44:48: note: mutation of this property is only permitted within the actor
42 | default YES
43 | */
44 | @property (nonatomic, getter = isEnabled) BOOL enabled;
| `- note: mutation of this property is only permitted within the actor
45 |
46 | /** If a field is exclusive, it suppresses any other field in its region of effect.
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:40:18: warning: main actor-isolated property 'isExclusive' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var isExclusive: Binder<Bool> {
39 | return Binder(self.base) { view, isExclusive in
40 | view.isExclusive = isExclusive
| `- warning: main actor-isolated property 'isExclusive' 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/SKFieldNode.h:51:50: note: mutation of this property is only permitted within the actor
49 | @see region
50 | */
51 | @property (nonatomic, getter = isExclusive) BOOL exclusive;
| `- note: mutation of this property is only permitted within the actor
52 |
53 | /** Logical categories the field belongs to. Default is all categories.
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:46:18: warning: main actor-isolated property 'minimumRadius' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var minimumRadius: Binder<Float> {
45 | return Binder(self.base) { view, minimumRadius in
46 | view.minimumRadius = minimumRadius
| `- warning: main actor-isolated property 'minimumRadius' 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/SKFieldNode.h:38:29: note: mutation of this property is only permitted within the actor
36 |
37 | /** minimum radius of effect. Default is very small. */
38 | @property (nonatomic) float minimumRadius;
| `- note: mutation of this property is only permitted within the actor
39 |
40 | /** If enabled, a field has an effect.
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:52:18: warning: main actor-isolated property 'region' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var region: Binder<SKRegion?> {
51 | return Binder(self.base) { view, region in
52 | view.region = region
| `- warning: main actor-isolated property 'region' 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/SKFieldNode.h:23:51: note: mutation of this property is only permitted within the actor
21 | /** The region property is the domain of the field's effect. No force is applied to objects outside the region.
22 | */
23 | @property (nonatomic, retain, nullable) SKRegion *region;
| `- note: mutation of this property is only permitted within the actor
24 |
25 | /** strength scaling value. default 1.0 */
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:58:18: warning: main actor-isolated property 'smoothness' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var smoothness: Binder<Float> {
57 | return Binder(self.base) { view, smoothness in
58 | view.smoothness = smoothness
| `- warning: main actor-isolated property 'smoothness' 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/SKFieldNode.h:74:29: note: mutation of this property is only permitted within the actor
72 | @see turbulenceFieldWithSmoothness:smoothness:animationSpeed
73 | */
74 | @property (nonatomic) float smoothness;
| `- note: mutation of this property is only permitted within the actor
75 |
76 | /** fields that can be animated can have non zero values.
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:64:18: warning: main actor-isolated property 'strength' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var strength: Binder<Float> {
63 | return Binder(self.base) { view, strength in
64 | view.strength = strength
| `- warning: main actor-isolated property 'strength' 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/SKFieldNode.h:26:29: note: mutation of this property is only permitted within the actor
24 |
25 | /** strength scaling value. default 1.0 */
26 | @property (nonatomic) float strength;
| `- note: mutation of this property is only permitted within the actor
27 |
28 | /** The falloff exponent used to calculate field strength at a distance.
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:70: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
68 | public var texture: Binder<SKTexture?> {
69 | return Binder(self.base) { view, texture in
70 | 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
71 | }
72 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKFieldNode.h:89:52: note: mutation of this property is only permitted within the actor
87 | @see velocityFieldWithTexture:velocityTexture
88 | */
89 | @property (nonatomic, retain, nullable) SKTexture* texture;
| `- note: mutation of this property is only permitted within the actor
90 |
91 | /**
[298/301] Compiling RxSpriteKit SKFieldNode+Binder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:10:18: warning: main actor-isolated property 'attributeValues' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var attributeValues: Binder<[String: SKAttributeValue]> {
9 | return Binder(self.base) { view, attributeValues in
10 | view.attributeValues = attributeValues
| `- warning: main actor-isolated property 'attributeValues' 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/SKEffectNode.h:65:84: note: mutation of this property is only permitted within the actor
63 | Attributes can be used with custom SKShaders.
64 | */
65 | @property (nonatomic, nonnull, copy) NSDictionary<NSString *, SKAttributeValue *> *attributeValues API_AVAILABLE(ios(10.0), tvos(10.0), watchos(3.0), macos(10.12));
| `- note: mutation of this property is only permitted within the actor
66 |
67 | - (nullable SKAttributeValue*)valueForAttributeNamed:(nonnull NSString *)key API_AVAILABLE(ios(10.0), tvos(10.0), watchos(3.0), macos(10.12));
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+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/SKEffectNode.h:57:35: note: mutation of this property is only permitted within the actor
55 | @see SKNode.SKBlendMode
56 | */
57 | @property (nonatomic) SKBlendMode blendMode;
| `- note: mutation of this property is only permitted within the actor
58 |
59 | @property (nonatomic, retain, nullable) SKShader *shader;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:24:18: warning: main actor-isolated property 'filter' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
22 | public var filter: Binder<CIFilter?> {
23 | return Binder(self.base) { view, filter in
24 | view.filter = filter
| `- warning: main actor-isolated property 'filter' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
25 | }
26 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEffectNode.h:33:51: note: mutation of this property is only permitted within the actor
31 | Any CIFilter that requires only a single "inputImage" and produces an "outputImage" is allowed. The filter is applied to all children of the SKEffectNode. If the filter is nil, the children of this node is flattened before being drawn as long as the SKEffectNode is enabled.
32 | */
33 | @property (nonatomic, retain, nullable) CIFilter *filter;
| `- note: mutation of this property is only permitted within the actor
34 | #endif
35 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:32: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
30 | public var shader: Binder<SKShader?> {
31 | return Binder(self.base) { view, shader in
32 | 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
33 | }
34 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEffectNode.h:59:51: note: mutation of this property is only permitted within the actor
57 | @property (nonatomic) SKBlendMode blendMode;
58 |
59 | @property (nonatomic, retain, nullable) SKShader *shader;
| `- note: mutation of this property is only permitted within the actor
60 |
61 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:38:18: warning: main actor-isolated property 'shouldCenterFilter' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
36 | public var shouldCenterFilter: Binder<Bool> {
37 | return Binder(self.base) { view, shouldCenterFilter in
38 | view.shouldCenterFilter = shouldCenterFilter
| `- warning: main actor-isolated property 'shouldCenterFilter' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
39 | }
40 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEffectNode.h:37:28: note: mutation of this property is only permitted within the actor
35 |
36 | /* Controls whether the filter's "inputCenter" (if it exists) should automatically be set to the center of the effect area. Defaults to YES. */
37 | @property (nonatomic) BOOL shouldCenterFilter;
| `- note: mutation of this property is only permitted within the actor
38 |
39 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:44:18: warning: main actor-isolated property 'shouldEnableEffects' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
42 | public var shouldEnableEffects: Binder<Bool> {
43 | return Binder(self.base) { view, shouldEnableEffects in
44 | view.shouldEnableEffects = shouldEnableEffects
| `- warning: main actor-isolated property 'shouldEnableEffects' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
45 | }
46 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEffectNode.h:44:28: note: mutation of this property is only permitted within the actor
42 | The SKEffectNode has no effect when appliesEffects is not enabled, this is useful for setting up an effect to use later on. Defaults to YES.
43 | */
44 | @property (nonatomic) BOOL shouldEnableEffects;
| `- note: mutation of this property is only permitted within the actor
45 |
46 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEffectNode+Binder.swift:50:18: warning: main actor-isolated property 'shouldRasterize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
48 | public var shouldRasterize: Binder<Bool> {
49 | return Binder(self.base) { view, shouldRasterize in
50 | view.shouldRasterize = shouldRasterize
| `- warning: main actor-isolated property 'shouldRasterize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
51 | }
52 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEffectNode.h:51:28: note: mutation of this property is only permitted within the actor
49 | The SKEffectNode's output is rasterized and cached internally. This cache is reused when rendering. When the SKEffectNode's children change, the cache is updated, but changing properties on the CIFilter does *not* cause an update (you must disable rasterization and then re-enable it for the changes to apply). This is more expensive than not rasterizing if the node's children change frequently, only enable this option if you know the children is largely static.
50 | */
51 | @property (nonatomic) BOOL shouldRasterize;
| `- note: mutation of this property is only permitted within the actor
52 |
53 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:10:18: warning: main actor-isolated property 'attributeValues' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var attributeValues: Binder<[String: SKAttributeValue]> {
9 | return Binder(self.base) { view, attributeValues in
10 | view.attributeValues = attributeValues
| `- warning: main actor-isolated property 'attributeValues' 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/SKEmitterNode.h:226:84: note: mutation of this property is only permitted within the actor
224 | Attributes can be used with custom SKShaders.
225 | */
226 | @property (nonatomic, nonnull, copy) NSDictionary<NSString *, SKAttributeValue *> *attributeValues API_AVAILABLE(ios(10.0), tvos(10.0), watchos(3.0), macos(10.12));
| `- note: mutation of this property is only permitted within the actor
227 |
228 | - (nullable SKAttributeValue*)valueForAttributeNamed:(nonnull NSString *)key API_AVAILABLE(ios(10.0), tvos(10.0), watchos(3.0), macos(10.12));
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:16:18: warning: main actor-isolated property 'emissionAngle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | public var emissionAngle: Binder<CGFloat> {
15 | return Binder(self.base) { view, emissionAngle in
16 | view.emissionAngle = emissionAngle
| `- warning: main actor-isolated property 'emissionAngle' 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/SKEmitterNode.h:114:31: note: mutation of this property is only permitted within the actor
112 | The angle at which to emit each new particle, in radians. Defaults to 0.0.
113 | */
114 | @property (nonatomic) CGFloat emissionAngle;
| `- note: mutation of this property is only permitted within the actor
115 |
116 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:22:18: warning: main actor-isolated property 'emissionAngleRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var emissionAngleRange: Binder<CGFloat> {
21 | return Binder(self.base) { view, emissionAngleRange in
22 | view.emissionAngleRange = emissionAngleRange
| `- warning: main actor-isolated property 'emissionAngleRange' 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/SKEmitterNode.h:119:31: note: mutation of this property is only permitted within the actor
117 | The random variance about the angle at which to emit each new particle, in radians. Defaults to 0.0.
118 | */
119 | @property (nonatomic) CGFloat emissionAngleRange;
| `- note: mutation of this property is only permitted within the actor
120 |
121 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:28:18: warning: main actor-isolated property 'fieldBitMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
26 | public var fieldBitMask: Binder<UInt32> {
27 | return Binder(self.base) { view, fieldBitMask in
28 | view.fieldBitMask = fieldBitMask
| `- warning: main actor-isolated property 'fieldBitMask' 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/SKEmitterNode.h:213:40: note: mutation of this property is only permitted within the actor
211 | Can be forced off via affectedByGravity.
212 | */
213 | @property (nonatomic, assign) uint32_t fieldBitMask;
| `- note: mutation of this property is only permitted within the actor
214 |
215 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:34:18: warning: main actor-isolated property 'numParticlesToEmit' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | public var numParticlesToEmit: Binder<Int> {
33 | return Binder(self.base) { view, numParticlesToEmit in
34 | view.numParticlesToEmit = numParticlesToEmit
| `- warning: main actor-isolated property 'numParticlesToEmit' 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/SKEmitterNode.h:137:34: note: mutation of this property is only permitted within the actor
135 | The number of particles that will be emitted. If set to 0, there is no limit. Defaults to 0.
136 | */
137 | @property (nonatomic) NSUInteger numParticlesToEmit;
| `- note: mutation of this property is only permitted within the actor
138 |
139 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:40:18: warning: main actor-isolated property 'particleAction' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var particleAction: Binder<SKAction?> {
39 | return Binder(self.base) { view, particleAction in
40 | view.particleAction = particleAction
| `- warning: main actor-isolated property 'particleAction' 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/SKEmitterNode.h:207:49: note: mutation of this property is only permitted within the actor
205 | Specifies an action executed by new particles.
206 | */
207 | @property (nonatomic, copy, nullable) SKAction *particleAction;
| `- note: mutation of this property is only permitted within the actor
208 |
209 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:46:18: warning: main actor-isolated property 'particleAlpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var particleAlpha: Binder<CGFloat> {
45 | return Binder(self.base) { view, particleAlpha in
46 | view.particleAlpha = particleAlpha
| `- warning: main actor-isolated property 'particleAlpha' 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/SKEmitterNode.h:190:31: note: mutation of this property is only permitted within the actor
188 | The starting alpha for each particle. Defaults to 1.0.
189 | */
190 | @property (nonatomic) CGFloat particleAlpha;
| `- note: mutation of this property is only permitted within the actor
191 |
192 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:52:18: warning: main actor-isolated property 'particleAlphaRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var particleAlphaRange: Binder<CGFloat> {
51 | return Binder(self.base) { view, particleAlphaRange in
52 | view.particleAlphaRange = particleAlphaRange
| `- warning: main actor-isolated property 'particleAlphaRange' 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/SKEmitterNode.h:195:31: note: mutation of this property is only permitted within the actor
193 | The random variance about the starting alpha for each particle. Defaults to 1.0.
194 | */
195 | @property (nonatomic) CGFloat particleAlphaRange;
| `- note: mutation of this property is only permitted within the actor
196 |
197 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:58:18: warning: main actor-isolated property 'particleAlphaSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var particleAlphaSequence: Binder<SKKeyframeSequence?> {
57 | return Binder(self.base) { view, particleAlphaSequence in
58 | view.particleAlphaSequence = particleAlphaSequence
| `- warning: main actor-isolated property 'particleAlphaSequence' 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/SKEmitterNode.h:202:61: note: mutation of this property is only permitted within the actor
200 | @property (nonatomic) CGFloat particleAlphaSpeed;
201 |
202 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleAlphaSequence;
| `- note: mutation of this property is only permitted within the actor
203 |
204 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:64:18: warning: main actor-isolated property 'particleAlphaSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var particleAlphaSpeed: Binder<CGFloat> {
63 | return Binder(self.base) { view, particleAlphaSpeed in
64 | view.particleAlphaSpeed = particleAlphaSpeed
| `- warning: main actor-isolated property 'particleAlphaSpeed' 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/SKEmitterNode.h:200:31: note: mutation of this property is only permitted within the actor
198 | The rate at which to modify the alpha for each particle. Defaults to 1.0.
199 | */
200 | @property (nonatomic) CGFloat particleAlphaSpeed;
| `- note: mutation of this property is only permitted within the actor
201 |
202 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleAlphaSequence;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:70:18: warning: main actor-isolated property 'particleBirthRate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | public var particleBirthRate: Binder<CGFloat> {
69 | return Binder(self.base) { view, particleBirthRate in
70 | view.particleBirthRate = particleBirthRate
| `- warning: main actor-isolated property 'particleBirthRate' 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/SKEmitterNode.h:131:31: note: mutation of this property is only permitted within the actor
129 | The rate at which new particles are generated, in particles per second. Defaults to 0.0.
130 | */
131 | @property (nonatomic) CGFloat particleBirthRate;
| `- note: mutation of this property is only permitted within the actor
132 |
133 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:76:18: warning: main actor-isolated property 'particleBlendMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
74 | public var particleBlendMode: Binder<SKBlendMode> {
75 | return Binder(self.base) { view, particleBlendMode in
76 | view.particleBlendMode = particleBlendMode
| `- warning: main actor-isolated property 'particleBlendMode' 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/SKEmitterNode.h:48:35: note: mutation of this property is only permitted within the actor
46 | The blend mode for each particle. Defaults to SKBlendModeAlpha.
47 | */
48 | @property (nonatomic) SKBlendMode particleBlendMode;
| `- note: mutation of this property is only permitted within the actor
49 |
50 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:82:18: warning: main actor-isolated property 'particleColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
80 | public var particleColor: Binder<RSKColor> {
81 | return Binder(self.base) { view, particleColor in
82 | view.particleColor = particleColor
| `- warning: main actor-isolated property 'particleColor' 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/SKEmitterNode.h:53:40: note: mutation of this property is only permitted within the actor
51 | The starting color for each particle. Defaults to clear.
52 | */
53 | @property (nonatomic, retain) SKColor *particleColor;
| `- note: mutation of this property is only permitted within the actor
54 |
55 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:88:18: warning: main actor-isolated property 'particleColorAlphaRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
86 | public var particleColorAlphaRange: Binder<CGFloat> {
87 | return Binder(self.base) { view, particleColorAlphaRange in
88 | view.particleColorAlphaRange = particleColorAlphaRange
| `- warning: main actor-isolated property 'particleColorAlphaRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
89 | }
90 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:61:31: note: mutation of this property is only permitted within the actor
59 | @property (nonatomic) CGFloat particleColorGreenRange;
60 | @property (nonatomic) CGFloat particleColorBlueRange;
61 | @property (nonatomic) CGFloat particleColorAlphaRange;
| `- note: mutation of this property is only permitted within the actor
62 |
63 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:94:18: warning: main actor-isolated property 'particleColorAlphaSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
92 | public var particleColorAlphaSpeed: Binder<CGFloat> {
93 | return Binder(self.base) { view, particleColorAlphaSpeed in
94 | view.particleColorAlphaSpeed = particleColorAlphaSpeed
| `- warning: main actor-isolated property 'particleColorAlphaSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
95 | }
96 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:69:31: note: mutation of this property is only permitted within the actor
67 | @property (nonatomic) CGFloat particleColorGreenSpeed;
68 | @property (nonatomic) CGFloat particleColorBlueSpeed;
69 | @property (nonatomic) CGFloat particleColorAlphaSpeed;
| `- note: mutation of this property is only permitted within the actor
70 |
71 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleColorSequence;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:100:18: warning: main actor-isolated property 'particleColorBlendFactor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
98 | public var particleColorBlendFactor: Binder<CGFloat> {
99 | return Binder(self.base) { view, particleColorBlendFactor in
100 | view.particleColorBlendFactor = particleColorBlendFactor
| `- warning: main actor-isolated property 'particleColorBlendFactor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
101 | }
102 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:76:31: note: mutation of this property is only permitted within the actor
74 | The starting color blend for each particle. Behaves the same as SKSpriteNode. Defaults to 0.0.
75 | */
76 | @property (nonatomic) CGFloat particleColorBlendFactor;
| `- note: mutation of this property is only permitted within the actor
77 |
78 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:106:18: warning: main actor-isolated property 'particleColorBlendFactorRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
104 | public var particleColorBlendFactorRange: Binder<CGFloat> {
105 | return Binder(self.base) { view, particleColorBlendFactorRange in
106 | view.particleColorBlendFactorRange = particleColorBlendFactorRange
| `- warning: main actor-isolated property 'particleColorBlendFactorRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
107 | }
108 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:81:31: note: mutation of this property is only permitted within the actor
79 | The random variance about the starting color blend for each particle. Defaults to 0.0.
80 | */
81 | @property (nonatomic) CGFloat particleColorBlendFactorRange;
| `- note: mutation of this property is only permitted within the actor
82 |
83 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:112:18: warning: main actor-isolated property 'particleColorBlendFactorSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 | public var particleColorBlendFactorSequence: Binder<SKKeyframeSequence?> {
111 | return Binder(self.base) { view, particleColorBlendFactorSequence in
112 | view.particleColorBlendFactorSequence = particleColorBlendFactorSequence
| `- warning: main actor-isolated property 'particleColorBlendFactorSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
113 | }
114 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:88:61: note: mutation of this property is only permitted within the actor
86 | @property (nonatomic) CGFloat particleColorBlendFactorSpeed;
87 |
88 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleColorBlendFactorSequence;
| `- note: mutation of this property is only permitted within the actor
89 |
90 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:118:18: warning: main actor-isolated property 'particleColorBlendFactorSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
116 | public var particleColorBlendFactorSpeed: Binder<CGFloat> {
117 | return Binder(self.base) { view, particleColorBlendFactorSpeed in
118 | view.particleColorBlendFactorSpeed = particleColorBlendFactorSpeed
| `- warning: main actor-isolated property 'particleColorBlendFactorSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
119 | }
120 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:86:31: note: mutation of this property is only permitted within the actor
84 | The rate at which to modify the color blend for each particle. Defaults to 0.0.
85 | */
86 | @property (nonatomic) CGFloat particleColorBlendFactorSpeed;
| `- note: mutation of this property is only permitted within the actor
87 |
88 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleColorBlendFactorSequence;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:124:18: warning: main actor-isolated property 'particleColorBlueRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
122 | public var particleColorBlueRange: Binder<CGFloat> {
123 | return Binder(self.base) { view, particleColorBlueRange in
124 | view.particleColorBlueRange = particleColorBlueRange
| `- warning: main actor-isolated property 'particleColorBlueRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
125 | }
126 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:60:31: note: mutation of this property is only permitted within the actor
58 | @property (nonatomic) CGFloat particleColorRedRange;
59 | @property (nonatomic) CGFloat particleColorGreenRange;
60 | @property (nonatomic) CGFloat particleColorBlueRange;
| `- note: mutation of this property is only permitted within the actor
61 | @property (nonatomic) CGFloat particleColorAlphaRange;
62 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:130:18: warning: main actor-isolated property 'particleColorBlueSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
128 | public var particleColorBlueSpeed: Binder<CGFloat> {
129 | return Binder(self.base) { view, particleColorBlueSpeed in
130 | view.particleColorBlueSpeed = particleColorBlueSpeed
| `- warning: main actor-isolated property 'particleColorBlueSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
131 | }
132 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:68:31: note: mutation of this property is only permitted within the actor
66 | @property (nonatomic) CGFloat particleColorRedSpeed;
67 | @property (nonatomic) CGFloat particleColorGreenSpeed;
68 | @property (nonatomic) CGFloat particleColorBlueSpeed;
| `- note: mutation of this property is only permitted within the actor
69 | @property (nonatomic) CGFloat particleColorAlphaSpeed;
70 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:136:18: warning: main actor-isolated property 'particleColorGreenRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
134 | public var particleColorGreenRange: Binder<CGFloat> {
135 | return Binder(self.base) { view, particleColorGreenRange in
136 | view.particleColorGreenRange = particleColorGreenRange
| `- warning: main actor-isolated property 'particleColorGreenRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 | }
138 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:59:31: note: mutation of this property is only permitted within the actor
57 | */
58 | @property (nonatomic) CGFloat particleColorRedRange;
59 | @property (nonatomic) CGFloat particleColorGreenRange;
| `- note: mutation of this property is only permitted within the actor
60 | @property (nonatomic) CGFloat particleColorBlueRange;
61 | @property (nonatomic) CGFloat particleColorAlphaRange;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:142:18: warning: main actor-isolated property 'particleColorGreenSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
140 | public var particleColorGreenSpeed: Binder<CGFloat> {
141 | return Binder(self.base) { view, particleColorGreenSpeed in
142 | view.particleColorGreenSpeed = particleColorGreenSpeed
| `- warning: main actor-isolated property 'particleColorGreenSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
143 | }
144 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:67:31: note: mutation of this property is only permitted within the actor
65 | */
66 | @property (nonatomic) CGFloat particleColorRedSpeed;
67 | @property (nonatomic) CGFloat particleColorGreenSpeed;
| `- note: mutation of this property is only permitted within the actor
68 | @property (nonatomic) CGFloat particleColorBlueSpeed;
69 | @property (nonatomic) CGFloat particleColorAlphaSpeed;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:148:18: warning: main actor-isolated property 'particleColorRedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
146 | public var particleColorRedRange: Binder<CGFloat> {
147 | return Binder(self.base) { view, particleColorRedRange in
148 | view.particleColorRedRange = particleColorRedRange
| `- warning: main actor-isolated property 'particleColorRedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
149 | }
150 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:58:31: note: mutation of this property is only permitted within the actor
56 | The random variance about each color component for each particle. Defaults to 0.0.
57 | */
58 | @property (nonatomic) CGFloat particleColorRedRange;
| `- note: mutation of this property is only permitted within the actor
59 | @property (nonatomic) CGFloat particleColorGreenRange;
60 | @property (nonatomic) CGFloat particleColorBlueRange;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:154:18: warning: main actor-isolated property 'particleColorRedSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
152 | public var particleColorRedSpeed: Binder<CGFloat> {
153 | return Binder(self.base) { view, particleColorRedSpeed in
154 | view.particleColorRedSpeed = particleColorRedSpeed
| `- warning: main actor-isolated property 'particleColorRedSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
155 | }
156 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:66:31: note: mutation of this property is only permitted within the actor
64 | The rate at which to modify each color component for each particle (per second).
65 | */
66 | @property (nonatomic) CGFloat particleColorRedSpeed;
| `- note: mutation of this property is only permitted within the actor
67 | @property (nonatomic) CGFloat particleColorGreenSpeed;
68 | @property (nonatomic) CGFloat particleColorBlueSpeed;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:160:18: warning: main actor-isolated property 'particleColorSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
158 | public var particleColorSequence: Binder<SKKeyframeSequence?> {
159 | return Binder(self.base) { view, particleColorSequence in
160 | view.particleColorSequence = particleColorSequence
| `- warning: main actor-isolated property 'particleColorSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
161 | }
162 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:71:61: note: mutation of this property is only permitted within the actor
69 | @property (nonatomic) CGFloat particleColorAlphaSpeed;
70 |
71 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleColorSequence;
| `- note: mutation of this property is only permitted within the actor
72 |
73 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:166:18: warning: main actor-isolated property 'particleLifetime' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
164 | public var particleLifetime: Binder<CGFloat> {
165 | return Binder(self.base) { view, particleLifetime in
166 | view.particleLifetime = particleLifetime
| `- warning: main actor-isolated property 'particleLifetime' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
167 | }
168 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:142:31: note: mutation of this property is only permitted within the actor
140 | The lifetime of each particle, in seconds. Defaults to 0.0.
141 | */
142 | @property (nonatomic) CGFloat particleLifetime;
| `- note: mutation of this property is only permitted within the actor
143 |
144 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:172:18: warning: main actor-isolated property 'particleLifetimeRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
170 | public var particleLifetimeRange: Binder<CGFloat> {
171 | return Binder(self.base) { view, particleLifetimeRange in
172 | view.particleLifetimeRange = particleLifetimeRange
| `- warning: main actor-isolated property 'particleLifetimeRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
173 | }
174 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:147:31: note: mutation of this property is only permitted within the actor
145 | The random variance about the lifetime of each particle, in seconds. Defaults to 0.0.
146 | */
147 | @property (nonatomic) CGFloat particleLifetimeRange;
| `- note: mutation of this property is only permitted within the actor
148 |
149 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:178:18: warning: main actor-isolated property 'particlePosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
176 | public var particlePosition: Binder<CGPoint> {
177 | return Binder(self.base) { view, particlePosition in
178 | view.particlePosition = particlePosition
| `- warning: main actor-isolated property 'particlePosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
179 | }
180 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:93:31: note: mutation of this property is only permitted within the actor
91 | The starting position for each particle in the emitter's coordinate space. Defaults to (0.0, 0,0).
92 | */
93 | @property (nonatomic) CGPoint particlePosition;
| `- note: mutation of this property is only permitted within the actor
94 |
95 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:184:18: warning: main actor-isolated property 'particlePositionRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
182 | public var particlePositionRange: Binder<CGVector> {
183 | return Binder(self.base) { view, particlePositionRange in
184 | view.particlePositionRange = particlePositionRange
| `- warning: main actor-isolated property 'particlePositionRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
185 | }
186 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:98:32: note: mutation of this property is only permitted within the actor
96 | The random variance about the starting position for each particle in the emitter's coordinate space. Defaults to (0.0, 0,0).
97 | */
98 | @property (nonatomic) CGVector particlePositionRange;
| `- note: mutation of this property is only permitted within the actor
99 |
100 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:190:18: warning: main actor-isolated property 'particleRenderOrder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
188 | public var particleRenderOrder: Binder<SKParticleRenderOrder> {
189 | return Binder(self.base) { view, particleRenderOrder in
190 | view.particleRenderOrder = particleRenderOrder
| `- warning: main actor-isolated property 'particleRenderOrder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
191 | }
192 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:240:45: note: mutation of this property is only permitted within the actor
238 | The order in which particles will be rendered. Defaults to SKParticleRenderOrderOldestLast.
239 | */
240 | @property (nonatomic) SKParticleRenderOrder particleRenderOrder API_AVAILABLE(ios(9.0), tvos(9.0), watchos(2.0), macos(10.11));
| `- note: mutation of this property is only permitted within the actor
241 |
242 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:196:18: warning: main actor-isolated property 'particleRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
194 | public var particleRotation: Binder<CGFloat> {
195 | return Binder(self.base) { view, particleRotation in
196 | view.particleRotation = particleRotation
| `- warning: main actor-isolated property 'particleRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
197 | }
198 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:153:31: note: mutation of this property is only permitted within the actor
151 | The starting z-rotation for each particle. Defaults to 0.0.
152 | */
153 | @property (nonatomic) CGFloat particleRotation;
| `- note: mutation of this property is only permitted within the actor
154 |
155 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:202:18: warning: main actor-isolated property 'particleRotationRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
200 | public var particleRotationRange: Binder<CGFloat> {
201 | return Binder(self.base) { view, particleRotationRange in
202 | view.particleRotationRange = particleRotationRange
| `- warning: main actor-isolated property 'particleRotationRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
203 | }
204 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:158:31: note: mutation of this property is only permitted within the actor
156 | The random variance about the starting z-rotation for each particle. Defaults to 0.0.
157 | */
158 | @property (nonatomic) CGFloat particleRotationRange;
| `- note: mutation of this property is only permitted within the actor
159 |
160 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:208:18: warning: main actor-isolated property 'particleRotationSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
206 | public var particleRotationSpeed: Binder<CGFloat> {
207 | return Binder(self.base) { view, particleRotationSpeed in
208 | view.particleRotationSpeed = particleRotationSpeed
| `- warning: main actor-isolated property 'particleRotationSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
209 | }
210 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:163:31: note: mutation of this property is only permitted within the actor
161 | The rate at which to modify the z-rotation for each particle. Defaults to 0.0.
162 | */
163 | @property (nonatomic) CGFloat particleRotationSpeed;
| `- note: mutation of this property is only permitted within the actor
164 |
165 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:214:18: warning: main actor-isolated property 'particleScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
212 | public var particleScale: Binder<CGFloat> {
213 | return Binder(self.base) { view, particleScale in
214 | view.particleScale = particleScale
| `- warning: main actor-isolated property 'particleScale' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
215 | }
216 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:173:31: note: mutation of this property is only permitted within the actor
171 | The starting scale for each particle. Defaults to 1.0.
172 | */
173 | @property (nonatomic) CGFloat particleScale;
| `- note: mutation of this property is only permitted within the actor
174 |
175 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:220:18: warning: main actor-isolated property 'particleScaleRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
218 | public var particleScaleRange: Binder<CGFloat> {
219 | return Binder(self.base) { view, particleScaleRange in
220 | view.particleScaleRange = particleScaleRange
| `- warning: main actor-isolated property 'particleScaleRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
221 | }
222 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:178:31: note: mutation of this property is only permitted within the actor
176 | The random variance about the starting scale for each particle. Defaults to 0.0.
177 | */
178 | @property (nonatomic) CGFloat particleScaleRange;
| `- note: mutation of this property is only permitted within the actor
179 |
180 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:226:18: warning: main actor-isolated property 'particleScaleSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
224 | public var particleScaleSequence: Binder<SKKeyframeSequence?> {
225 | return Binder(self.base) { view, particleScaleSequence in
226 | view.particleScaleSequence = particleScaleSequence
| `- warning: main actor-isolated property 'particleScaleSequence' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
227 | }
228 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:185:61: note: mutation of this property is only permitted within the actor
183 | @property (nonatomic) CGFloat particleScaleSpeed;
184 |
185 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleScaleSequence;
| `- note: mutation of this property is only permitted within the actor
186 |
187 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:232:18: warning: main actor-isolated property 'particleScaleSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
230 | public var particleScaleSpeed: Binder<CGFloat> {
231 | return Binder(self.base) { view, particleScaleSpeed in
232 | view.particleScaleSpeed = particleScaleSpeed
| `- warning: main actor-isolated property 'particleScaleSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
233 | }
234 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:183:31: note: mutation of this property is only permitted within the actor
181 | The rate at which to modify the scale for each particle. Defaults to 0.0.
182 | */
183 | @property (nonatomic) CGFloat particleScaleSpeed;
| `- note: mutation of this property is only permitted within the actor
184 |
185 | @property (nonatomic, retain, nullable) SKKeyframeSequence *particleScaleSequence;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:238:18: warning: main actor-isolated property 'particleSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
236 | public var particleSize: Binder<CGSize> {
237 | return Binder(self.base) { view, particleSize in
238 | view.particleSize = particleSize
| `- warning: main actor-isolated property 'particleSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
239 | }
240 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:168:30: note: mutation of this property is only permitted within the actor
166 | The starting size for each particle. If set to CGSizeZero (the default) the particles will start at the size of the texture assigned to particleTexture. Note that particleScale and particleScaleRange will also have an effect on the effective size of each new particle.
167 | */
168 | @property (nonatomic) CGSize particleSize;
| `- note: mutation of this property is only permitted within the actor
169 |
170 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:244:18: warning: main actor-isolated property 'particleSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
242 | public var particleSpeed: Binder<CGFloat> {
243 | return Binder(self.base) { view, particleSpeed in
244 | view.particleSpeed = particleSpeed
| `- warning: main actor-isolated property 'particleSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
245 | }
246 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:104:31: note: mutation of this property is only permitted within the actor
102 | The starting speed for each particle along its emission vector. Defaults to 0.0.
103 | */
104 | @property (nonatomic) CGFloat particleSpeed;
| `- note: mutation of this property is only permitted within the actor
105 |
106 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:250:18: warning: main actor-isolated property 'particleSpeedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
248 | public var particleSpeedRange: Binder<CGFloat> {
249 | return Binder(self.base) { view, particleSpeedRange in
250 | view.particleSpeedRange = particleSpeedRange
| `- warning: main actor-isolated property 'particleSpeedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
251 | }
252 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:109:31: note: mutation of this property is only permitted within the actor
107 | The random variance about the starting speed for each particle along its emission vector. Defaults to 0.0.
108 | */
109 | @property (nonatomic) CGFloat particleSpeedRange;
| `- note: mutation of this property is only permitted within the actor
110 |
111 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:256:18: warning: main actor-isolated property 'particleTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
254 | public var particleTexture: Binder<SKTexture?> {
255 | return Binder(self.base) { view, particleTexture in
256 | view.particleTexture = particleTexture
| `- warning: main actor-isolated property 'particleTexture' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
257 | }
258 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:42:52: note: mutation of this property is only permitted within the actor
40 | The texture to be used for the particles.
41 | */
42 | @property (nonatomic, retain, nullable) SKTexture *particleTexture;
| `- note: mutation of this property is only permitted within the actor
43 |
44 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:262:18: warning: main actor-isolated property 'particleZPosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
260 | public var particleZPosition: Binder<CGFloat> {
261 | return Binder(self.base) { view, particleZPosition in
262 | view.particleZPosition = particleZPosition
| `- warning: main actor-isolated property 'particleZPosition' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
263 | }
264 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:235:31: note: mutation of this property is only permitted within the actor
233 | The starting z-position for each particle. Defaults to 0.0.
234 | */
235 | @property (nonatomic) CGFloat particleZPosition;
| `- note: mutation of this property is only permitted within the actor
236 |
237 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:268: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
266 | public var shader: Binder<SKShader?> {
267 | return Binder(self.base) { view, shader in
268 | 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
269 | }
270 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:220:51: note: mutation of this property is only permitted within the actor
218 | @property (nonatomic, weak, nullable) SKNode *targetNode;
219 |
220 | @property (nonatomic, retain, nullable) SKShader *shader;
| `- note: mutation of this property is only permitted within the actor
221 |
222 | /**
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:274:18: warning: main actor-isolated property 'targetNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
272 | public var targetNode: Binder<SKNode?> {
273 | return Binder(self.base) { view, targetNode in
274 | view.targetNode = targetNode
| `- warning: main actor-isolated property 'targetNode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
275 | }
276 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:218:47: note: mutation of this property is only permitted within the actor
216 | Normally the particles are rendered as if they were a child of the SKEmitterNode, they can also be rendered as if they were a child of any other node in the scene by setting the targetNode property. Defaults to nil (standard behavior).
217 | */
218 | @property (nonatomic, weak, nullable) SKNode *targetNode;
| `- note: mutation of this property is only permitted within the actor
219 |
220 | @property (nonatomic, retain, nullable) SKShader *shader;
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:280:18: warning: main actor-isolated property 'xAcceleration' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
278 | public var xAcceleration: Binder<CGFloat> {
279 | return Binder(self.base) { view, xAcceleration in
280 | view.xAcceleration = xAcceleration
| `- warning: main actor-isolated property 'xAcceleration' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
281 | }
282 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:124:31: note: mutation of this property is only permitted within the actor
122 | The acceleration to apply to each particles velocity. Useful for simulating effects such as wind or gravity. Defaults to 0.0.
123 | */
124 | @property (nonatomic) CGFloat xAcceleration;
| `- note: mutation of this property is only permitted within the actor
125 | @property (nonatomic) CGFloat yAcceleration;
126 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKEmitterNode+Binder.swift:286:18: warning: main actor-isolated property 'yAcceleration' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
284 | public var yAcceleration: Binder<CGFloat> {
285 | return Binder(self.base) { view, yAcceleration in
286 | view.yAcceleration = yAcceleration
| `- warning: main actor-isolated property 'yAcceleration' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
287 | }
288 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKEmitterNode.h:125:31: note: mutation of this property is only permitted within the actor
123 | */
124 | @property (nonatomic) CGFloat xAcceleration;
125 | @property (nonatomic) CGFloat yAcceleration;
| `- note: mutation of this property is only permitted within the actor
126 |
127 |
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:10:18: warning: main actor-isolated property 'animationSpeed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
8 | public var animationSpeed: Binder<Float> {
9 | return Binder(self.base) { view, animationSpeed in
10 | view.animationSpeed = animationSpeed
| `- warning: main actor-isolated property 'animationSpeed' 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/SKFieldNode.h:83:29: note: mutation of this property is only permitted within the actor
81 | @see turbulenceFieldWithSmoothness:smoothness:animationSpeed
82 | */
83 | @property (nonatomic) float animationSpeed;
| `- note: mutation of this property is only permitted within the actor
84 |
85 | /** fields constructed with a texture can be uppdated by assigning a new texture
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+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/SKFieldNode.h:60:32: note: mutation of this property is only permitted within the actor
58 | @see SKEmitterNode.fieldBitMask
59 | */
60 | @property (nonatomic) uint32_t categoryBitMask;
| `- note: mutation of this property is only permitted within the actor
61 |
62 | /** directed fields' directions can be accessed here. If the field is non-directional, a zero vector will be returned
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:22:18: warning: main actor-isolated property 'direction' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | public var direction: Binder<vector_float3> {
21 | return Binder(self.base) { view, direction in
22 | view.direction = direction
| `- warning: main actor-isolated property 'direction' 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/SKFieldNode.h:67:37: note: mutation of this property is only permitted within the actor
65 | @see velocityFieldWithVector:direction
66 | */
67 | @property (nonatomic) vector_float3 direction;
| `- note: mutation of this property is only permitted within the actor
68 |
69 | /** fields without a smoothness component will return 0
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:28: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
26 | public var falloff: Binder<Float> {
27 | return Binder(self.base) { view, falloff in
28 | 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
29 | }
30 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKFieldNode.h:35:29: note: mutation of this property is only permitted within the actor
33 | @see minimumRadius
34 | */
35 | @property (nonatomic) float falloff;
| `- note: mutation of this property is only permitted within the actor
36 |
37 | /** minimum radius of effect. Default is very small. */
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:34: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
32 | public var isEnabled: Binder<Bool> {
33 | return Binder(self.base) { view, isEnabled in
34 | 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
35 | }
36 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKFieldNode.h:44:48: note: mutation of this property is only permitted within the actor
42 | default YES
43 | */
44 | @property (nonatomic, getter = isEnabled) BOOL enabled;
| `- note: mutation of this property is only permitted within the actor
45 |
46 | /** If a field is exclusive, it suppresses any other field in its region of effect.
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:40:18: warning: main actor-isolated property 'isExclusive' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
38 | public var isExclusive: Binder<Bool> {
39 | return Binder(self.base) { view, isExclusive in
40 | view.isExclusive = isExclusive
| `- warning: main actor-isolated property 'isExclusive' 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/SKFieldNode.h:51:50: note: mutation of this property is only permitted within the actor
49 | @see region
50 | */
51 | @property (nonatomic, getter = isExclusive) BOOL exclusive;
| `- note: mutation of this property is only permitted within the actor
52 |
53 | /** Logical categories the field belongs to. Default is all categories.
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:46:18: warning: main actor-isolated property 'minimumRadius' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
44 | public var minimumRadius: Binder<Float> {
45 | return Binder(self.base) { view, minimumRadius in
46 | view.minimumRadius = minimumRadius
| `- warning: main actor-isolated property 'minimumRadius' 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/SKFieldNode.h:38:29: note: mutation of this property is only permitted within the actor
36 |
37 | /** minimum radius of effect. Default is very small. */
38 | @property (nonatomic) float minimumRadius;
| `- note: mutation of this property is only permitted within the actor
39 |
40 | /** If enabled, a field has an effect.
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:52:18: warning: main actor-isolated property 'region' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
50 | public var region: Binder<SKRegion?> {
51 | return Binder(self.base) { view, region in
52 | view.region = region
| `- warning: main actor-isolated property 'region' 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/SKFieldNode.h:23:51: note: mutation of this property is only permitted within the actor
21 | /** The region property is the domain of the field's effect. No force is applied to objects outside the region.
22 | */
23 | @property (nonatomic, retain, nullable) SKRegion *region;
| `- note: mutation of this property is only permitted within the actor
24 |
25 | /** strength scaling value. default 1.0 */
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:58:18: warning: main actor-isolated property 'smoothness' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 | public var smoothness: Binder<Float> {
57 | return Binder(self.base) { view, smoothness in
58 | view.smoothness = smoothness
| `- warning: main actor-isolated property 'smoothness' 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/SKFieldNode.h:74:29: note: mutation of this property is only permitted within the actor
72 | @see turbulenceFieldWithSmoothness:smoothness:animationSpeed
73 | */
74 | @property (nonatomic) float smoothness;
| `- note: mutation of this property is only permitted within the actor
75 |
76 | /** fields that can be animated can have non zero values.
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:64:18: warning: main actor-isolated property 'strength' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
62 | public var strength: Binder<Float> {
63 | return Binder(self.base) { view, strength in
64 | view.strength = strength
| `- warning: main actor-isolated property 'strength' 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/SKFieldNode.h:26:29: note: mutation of this property is only permitted within the actor
24 |
25 | /** strength scaling value. default 1.0 */
26 | @property (nonatomic) float strength;
| `- note: mutation of this property is only permitted within the actor
27 |
28 | /** The falloff exponent used to calculate field strength at a distance.
/Users/admin/builder/spi-builder-workspace/Sources/RxSpriteKit/Binders/SKFieldNode+Binder.swift:70: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
68 | public var texture: Binder<SKTexture?> {
69 | return Binder(self.base) { view, texture in
70 | 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
71 | }
72 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SKFieldNode.h:89:52: note: mutation of this property is only permitted within the actor
87 | @see velocityFieldWithTexture:velocityTexture
88 | */
89 | @property (nonatomic, retain, nullable) SKTexture* texture;
| `- note: mutation of this property is only permitted within the actor
90 |
91 | /**
[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.00s)
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.