This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import GameKit | |
import SwiftUI | |
struct GameTestView: View { | |
@StateObject private var gameKitManager = GameKitManager() | |
@State private var timer: Timer? | |
var body: some View { | |
VStack { | |
Text("Score: \(gameKitManager.score)") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import RealityKit | |
import ARKit | |
import HandVector | |
struct TargetPracticeView: View { | |
@State var jointPositions: [HandSkeleton.JointName: SIMD3<Float>] = [:] | |
@State var targets: [Target] = [] | |
@State var laserBeamEntity: ModelEntity? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import RealityKit | |
import ARKit | |
import HandVector | |
struct HandTrackingRaycastView: View { | |
@State var jointPositions: [HandSkeleton.JointName: SIMD3<Float>] = [:] | |
@State var sphereEntity: ModelEntity? | |
@State var laserBeamEntity: ModelEntity? | |
@State var gunEntity: ModelEntity? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import RealityKit | |
import ARKit | |
import HandVector | |
struct HandTrackingRaycastView: View { | |
@State var jointPositions: [HandSkeleton.JointName: SIMD3<Float>] = [:] | |
@State var sphereEntity: ModelEntity? | |
@State var laserBeamEntity: ModelEntity? | |
@State var gunEntity: ModelEntity? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import RealityKit | |
import ARKit | |
struct HandTrackingRaycastView: View { | |
@State var jointPositions: [HandSkeleton.JointName: SIMD3<Float>] = [:] | |
@State var sphereEntity: ModelEntity? | |
@State var debugCylinderEntity: ModelEntity? | |
let sphereRadius: Float = 0.1 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import RealityKit | |
#Preview("TileFloorSinglePlaneRealityView") { | |
TileFloorSinglePlaneRealityView() | |
} | |
struct TileFloorSinglePlaneRealityView: View { | |
var body: some View { | |
let gridSize = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import RealityKit | |
// Volume example | |
struct TileFloorRealityView: View { | |
let gridSize = 8 | |
var body: some View { | |
GeometryReader3D { proxy in | |
RealityView { content in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import RealityKit | |
import SwiftUI | |
struct PhysicallyBasedMaterialPickerView2: View { | |
@State var entity: ModelEntity? | |
@State var baseColorTextureResource: TextureResource? | |
@State var materialParameters: PhysicallyBasedMaterialParameters = PhysicallyBasedMaterialParameters() | |
var body: some View { | |
RealityView { content in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import RealityKit | |
import SwiftUI | |
struct PhysicallyBasedMaterialPickerView: View { | |
@State var entity: ModelEntity? | |
@State var materialParameters: PhysicallyBasedMaterialParameters = PhysicallyBasedMaterialParameters() | |
func generateEntity() -> ModelEntity { | |
let meshResource = MeshResource.generateSphere(radius: 0.2) | |
return ModelEntity(mesh: meshResource, materials: [getMaterial()]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import RealityKit | |
import Metal | |
struct LowLevelMeshRevealView: View { | |
@State var entity: ModelEntity? | |
@State var lowLevelMesh: LowLevelMesh? | |
@State var originalVertices: [VertexData] = [] | |
@State var timer: Timer? | |
@State var isForward: Bool = true |