Prism

A lightweight 3D renderer for SwiftUI.

  • Works with any SwiftUI View.
  • Fully interactive and animatable.
  • Compatible with all SwiftUI modifiers.
  • Will not affect sizing (unlike GeometryReader…)
  • 100% SwiftUI. No SceneKit or other weird stuff.
  • Powered by perspective transforms, so it’s fast.
  • Supports sizing, extrusion, levitation, and more.
Logo cube Square that animates into a cube, with border 3 green cubes that bounce on click Thin, levitating blue prism Prism with an image on each side

Installation

Requires iOS 13+ or macOS Catalina and up. Prism can be installed through the Swift Package Manager.

https://github.com/aheze/Prism

Usage

Prism is designed to be easy to use. First, define a PrismConfiguration for customization. Then add a PrismCanvas, which can contain as many PrismViews as you’d like.

struct ContentView: View {
    @State var configuration = PrismConfiguration(
        tilt: 0.5, /// A value from 0 to 1, representing the perspective.
        size: CGSize(width: 200, height: 200), /// How big the prism is.
        extrusion: 100, /// The z height.
        levitation: 20, /// How far the prism is from the ground.
        shadowColor: Color.black, /// A dynamic shadow that's rendered underneath the prism.
        shadowOpacity: 0.25 /// The strength of the shadow.
    )

    var body: some View {
        PrismCanvas(tilt: configuration.tilt) {
            PrismView(configuration: configuration) {
                Color.blue
            } left: {
                Color.red
            } right: {
                Color.green
            }
        }
    }
}

Result, a multicolored cube

Example

The example app includes a bunch of samples to play with. Download it here!

Screenshot of example app

Customization

Prism supports extensive customization through the PrismConfiguration struct. Check out the example app for an editor!

Customization.mp4

Community

Author

Prism is made by aheze.

Contributing

All contributions are welcome. Just fork the repo, then make a pull request.

Need Help?

Open an issue or join the Discord server. You can also ping me on Twitter. Or read the source code — there’s lots of comments.

Apps Using Prism

Find is an app for browsing photos. Prism is used in the onboarding screen — download to check it out!

Find.mp4

If you have an app that uses Prism, just make a PR or message me.

License

MIT License

Copyright (c) 2022 A. Zheng

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

GitHub

View Github