Releases: rryam/MeshingKit
Releases · rryam/MeshingKit
1.2.1
1.2.0
New in this release
Add animation directly with a view:
MeshingKit.animatedGradientSize4(template: .auroraBorealis, showAnimation: .constant(true))
1.1.0
New in this release
Added parameterized noise shader and SwiftUI view:
ParameterizedNoiseView(intensity: .constant(0.5), frequency: .constant(0.2), opacity: .constant(0.9)) {
MeshingKit.gradientSize3(template: .cosmicAurora)
}
1.0.0
MeshingKit v1.0.0
Release Date: October 14, 2024
Gradient Templates with Multiple Sizes
- 2x2 Templates:
Examples: Mystic Twilight, Arctic Frost, Tropical Paradise, Cherry Blossom - 3x3 Templates:
Examples: Intelligence, Ocean Depths, Aurora Borealis, Ruby Fusion - 4x4 Templates:
Examples: Cosmic Nebula, Jungle Mist, Volcanic Oasis, Arctic Frost
Platform Support
MeshingKit is compatible with the latest versions of:
- iOS 18
- macOS 15
- macCatalyst 18
- tvOS 18
- visionOS 2
- watchOS 11
How to Use MeshingKit
import SwiftUI
import MeshingKit
struct ContentView: View {
var body: some View {
MeshingKit.gradientSize3(template: .cosmicAurora)
.frame(width: 300, height: 300)
}
}