Spatial. Intelligent. Modern.
Apps Built Around Your Needs.Creating nicely fitted apps for Apple Vision Pro, Snap Spectacles, and iOS.
About Develicious
Develicious is an artificial word creation consisting of "development" and "delicious". It stands for our philosophy to provide solutions that nicely fit the requirements of our customers.
We specialize in mobile apps, especially spatial platforms like Apple Vision Pro and Snap Spectacles. From lifestyle and games to productivity tools and drone software, we bring ideas to life.
import SwiftUI
import RealityKit
import RealityKitContent
struct ModelView: View {
var body: some View {
RealityView { content in
if let entity = try? await Entity(
named: "Immersive",
in: realityKitContentBundle
) {
content.add(entity)
}
}
}
}