КОМЕНТАРІ
@sangameshpeddi8307
@sangameshpeddi8307 Місяць тому
I can't find the reality composert file can anyone help me with this issue, im using the latest xcode
@ranf8073
@ranf8073 2 місяці тому
Can someone help me please I can't create a reality composer file it does not show on my xcode and I am struggling 😭
@laughtale1181
@laughtale1181 2 місяці тому
im super excited
@JeffKomarow
@JeffKomarow 4 місяці тому
I love u 🤖
@brunoamteodoro
@brunoamteodoro 5 місяців тому
Yo, any ideia how I can play animations that are embedded to the .usdz file?
@deepshah2305
@deepshah2305 5 місяців тому
Will making the ball entity as static constant work? Instead of querying it?
@deepshah2305
@deepshah2305 5 місяців тому
Unable to find Reality Composer (Experience file) in the new update. The below way-around worked for me. I am new to iOS, so I would love to hear some feedback for improvement. // // ContentView.swift // roll-a-ball // // Created by D on 11/30/23. // import SwiftUI import RealityKit struct ContentView : View { var body: some View { ARViewContainer().edgesIgnoringSafeArea(.all) } } struct ARViewContainer: UIViewRepresentable { func makeUIView(context: Context) -> ARView { let arView = ARView(frame: .zero) let physics = PhysicsBodyComponent(massProperties: .default, material: .default, mode: .dynamic) // Download From: sketchfab.com/3d-models/bowling-ball-fc8f1162901a4e38b506fe1ab229f296 guard let ballEntity = try? ModelEntity.load(named: "Bowling_Ball.usdz") else { fatalError("Failed to load the Bowling Ball USDZ model.") } ballEntity.generateCollisionShapes(recursive: true) ballEntity.components.set(physics) // Download From: sketchfab.com/3d-models/bowling-pin-028ccb945012460aa9056ffda5b53e20#comments guard let pin1 = try? ModelEntity.load(named: "Bowling_Pin.usdz") else { fatalError("Failed to load the Pin 1 USDZ model.") } pin1.generateCollisionShapes(recursive: true) pin1.components.set(physics) // Create three additional copies of the original entity let pin2 = pin1.clone(recursive: true) let pin3 = pin1.clone(recursive: true) let pin4 = pin1.clone(recursive: true) // Set positions for the additional pins (adjust positions as needed) pin1.transform.translation = SIMD3<Float>(0.0, 0.0, 0.4) pin2.transform.translation = SIMD3<Float>(0.0, 0.0, -0.4) pin3.transform.translation = SIMD3<Float>(0.4, 0.0, 0.0) pin4.transform.translation = SIMD3<Float>(-0.4, 0.0, 0.0) // Create horizontal plane anchor for the content let anchor = AnchorEntity(.plane(.horizontal, classification: .any, minimumBounds: SIMD2<Float>(0.2, 0.2))) anchor.children.append(contentsOf: [ballEntity, pin1, pin2, pin3, pin4]) // Add the horizontal plane anchor to the scene arView.scene.anchors.append(anchor) return arView } func updateUIView(_ uiView: ARView, context: Context) {} } #Preview { ContentView() }
@ringosvirtualworld9027
@ringosvirtualworld9027 5 місяців тому
Love your video, concise and informative! BTW, Apple removed Reality Composer from xcode 15, making us unable to use it in mac OS. Any idea to resolve this? Thanks!
@edlopez8084
@edlopez8084 7 місяців тому
Why a jump scare?
@IntellectDeveloper
@IntellectDeveloper 7 місяців тому
where is the source code ?
@codewithaus
@codewithaus 7 місяців тому
is it possible to load usdz files from a url that points to a file hosted online?
@alex_und3r
@alex_und3r 8 місяців тому
hello! can you explain pls how to create Reality Composer project in Xcode 15? Nice channel btw! You got my sub!
@jemmytech5474
@jemmytech5474 8 місяців тому
Can you make a video on how to measure height of an object from camera in SwiftUI
@Magnetron692
@Magnetron692 9 місяців тому
Hi Joe! Thanky a lot for these courses. Your help in this matter is much appreciated! Both thumbs up 👍👍 Many greetings from nearby Stuttgart, Germany, Ralf
@nayandave8380
@nayandave8380 9 місяців тому
took me 5 minutes to understand the first 1...😆
@nayandave8380
@nayandave8380 9 місяців тому
That's too useful for beginners like me...thanks a ton for this...
@teaberry73
@teaberry73 9 місяців тому
in the diagram at 19:09, should the last number be -0.7?
@eltordavis
@eltordavis 9 місяців тому
Hey Keep this going! Please can you make some VisionOS tutorials?
@joecrotchett3591
@joecrotchett3591 9 місяців тому
Yes, coming soon!
@user-td3lb4qi5d
@user-td3lb4qi5d 9 місяців тому
Is anyone else experiencing difficulties with the new Xcode 15 beta, specifically when trying to open the Reality Composer app within iOS? I can successfully launch Reality Composer Pro with VisionOS, but I'm unable to make anything else work, including the older Xcode versions. Any suggestions or solutions?
@oliviervincent8911
@oliviervincent8911 8 місяців тому
Did you get this resolved? On Xcode beta 8, there is no Reality Composer Project file in the Resources section of a New File.
@sebastianstrus6273
@sebastianstrus6273 10 місяців тому
I learned something from your videos! ukposts.infoiDGGlgsSdMs?feature=share
@wenbotao1119
@wenbotao1119 10 місяців тому
This is an awesome series! Would love if we can download the final project.
@wenbotao1119
@wenbotao1119 10 місяців тому
Really like your teaching style. Hope you get a lot more views because of the launch of Vision pro
@rparham1997
@rparham1997 10 місяців тому
Where are you calling loadRollABall ?
@sebastianstrus6273
@sebastianstrus6273 10 місяців тому
Thanks for the video! This is cool. :)
@sebastianstrus6273
@sebastianstrus6273 10 місяців тому
Thanks for the video! :)
@sebastianstrus6273
@sebastianstrus6273 10 місяців тому
Please keep recording these videos! :)
@sebastianstrus6273
@sebastianstrus6273 10 місяців тому
Well done. I have learned a lot!
@sebastianstrus6273
@sebastianstrus6273 10 місяців тому
Amazing video!
@sebastianstrus6273
@sebastianstrus6273 10 місяців тому
Amazing video. Really helpful. This channel will grow a lot. Especially when Vision Pro will be available. :)
@rparham1997
@rparham1997 10 місяців тому
Could do a tutorial on your photography app?
@nathaneriksen8209
@nathaneriksen8209 10 місяців тому
Those are some scary ass clowns
@tassilovg
@tassilovg 10 місяців тому
This is dope
@CrusadeVoyager
@CrusadeVoyager 10 місяців тому
Nice content Keep it coming Thank you.
@teaberry73
@teaberry73 10 місяців тому
This is an amazing series! thank you so much. Such great level of detail that was also very consumable. Thank you so much! please keep going!
@BUdJohnson242
@BUdJohnson242 10 місяців тому
I was curious about what will happen to this channel and to your excellent videos. So glad to hear you're moving forward with the Reality Composer Pro tools. With that said, I really enjoy the method of your teaching and strongly advise continuing the teaching process with the inclusion of a completed project at the end. It's wonderful to see HOW the functions can be applied in the given contexts than just make series of tutorials on 1 thing. Thank you again.
@viperjay1
@viperjay1 10 місяців тому
Hi thanks for the video but the text is very blurry (360p on UKposts settings) . Would you mind uploading a higher res version?
@lucaban
@lucaban 10 місяців тому
For me it's 4K 🤔
@viperjay1
@viperjay1 10 місяців тому
@@lucaban it's 4k now as well for me.
@lucaban
@lucaban 10 місяців тому
Finally !!! I've been waiting for this 😊 awesome job on these videos. Please continue to make reality composer related content forever!!
@lOR__-yu4nh
@lOR__-yu4nh 10 місяців тому
Great teaching style, thanks so much for your videos.
@xuehaou
@xuehaou 10 місяців тому
awesome, thank you
@Kanakapallianurag
@Kanakapallianurag 10 місяців тому
Drop the new video .
@Kanakapallianurag
@Kanakapallianurag 11 місяців тому
i wonder does this RealityKit works exactly like this in XrOs ?
@teaberry73
@teaberry73 11 місяців тому
Great videos! Love the detail. Please keep these coming! thank you so much!!
@fts4life
@fts4life 11 місяців тому
What is the macOS application that you're showing while talking about Reality Composer starting at 1:01?
@fts4life
@fts4life 11 місяців тому
Nevermind, I see now that Reality Composer for macOS is launched from within Xcode when viewing a Reality File.
@Jamescito_
@Jamescito_ 11 місяців тому
Thank you 🙏🏽
@barannnn21
@barannnn21 11 місяців тому
appreciate it
@EliHartnett
@EliHartnett 11 місяців тому
Can't wait for part 3!
@BUdJohnson242
@BUdJohnson242 11 місяців тому
YOU Rock man! Been waiting for this to drop. Thank you so much. Please keep making more realitykit and swift ui tutorials!! You're the best -- Thank you!
@horamupa
@horamupa 11 місяців тому
God bless you
@EliHartnett
@EliHartnett 11 місяців тому
More more more!! Seriously, I love your teaching style. Great balance of misc 3d knowledge, how that knowledge applies to development within Apple's scope, and fun!
@ExcelMindCyber
@ExcelMindCyber 11 місяців тому
ukposts.info5phO03R9VXs?feature=share