Skip to content

Commit

Permalink
Update files
Browse files Browse the repository at this point in the history
  • Loading branch information
philipturner committed Oct 19, 2021
1 parent edc31ce commit 3364391
Show file tree
Hide file tree
Showing 194 changed files with 1,360 additions and 33,044 deletions.
17 changes: 17 additions & 0 deletions AR MultiPendulum/AR_MultiPendulumApp.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// AR_MultiPendulumApp.swift
// AR MultiPendulum
//
// Created by Philip Turner on 10/5/21.
//

import SwiftUI

@main
struct AR_MultiPendulumApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
20 changes: 20 additions & 0 deletions AR MultiPendulum/App Setup/PendulumSettingsView.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//
// PendulumSettingsView.swift
// AR MultiPendulum
//
// Created by Philip Turner on 10/5/21.
//

import ARHeadsetKit
import SwiftUI

struct PendulumSettingsView: CustomRenderingSettingsView {
@ObservedObject var coordinator: Coordinator
init(c: Coordinator) { coordinator = c }

public var body: some View {
Toggle(isOn: $coordinator.doingTwoSidedPendulums) {
Text("Two-Sided Pendulums")
}
}
}
41 changes: 0 additions & 41 deletions AR MultiPendulum/App Setup/Views.swift

This file was deleted.

Loading

0 comments on commit 3364391

Please sign in to comment.