Michaël Martinez

Results 5 comments of Michaël Martinez

Found one really inefficient but working solution : spb.removeAllAnimations() spb.removeFromSuperview() spb = nil spb = SegmentedProgressBar(numberOfSegments: self.playerItems.count, durations: self.playerItemsDuration) spb.frame = CGRect(x: 15, y: 15, width: view.frame.width - 30, height:...

When exporting then importing, I get no problem but the export loses the Geopoint data type information (thus importing after leads to non Geopoint type being imported): Exported: ``` {...

The solution I found is to manually poll on the peripheral services property after being connected: Timer.scheduledTimer(withTimeInterval: 1.0, repeats: true) { _ in print("Is notifying ? \(self.connectedPeripheral!.services.first!.characteristics[0].isNotifying)") }

Thanks a lot ; I removed the box limitation and it works fine. Related question: Does it make sense to also tweak the kMaxBuffersInFlight (to improve performance) and kMaxAnchorInstanceCount (is...

As far as I can remember I just commented out the related condition in the counting logic [here](https://github.com/beatTheSystem42/MetalWorldTextureScan/blob/main/MetalWorldTextureScan/ScanViewController.swift) See: ``` if mesh.inBox[fv] == 1 { // comment this condition c...