是否可以以编程方式下载.scn文件并运行它?

时间:2017-07-29 00:18:40

标签: ios scenekit arkit scnnode

基本上我想知道是否可以在网络上托管.scn文件,下载并将其呈现为SCNNode并将其放在sceneView中。

如果是这样,什么框架&函数我需要调用才能执行此操作

1 个答案:

答案 0 :(得分:2)

我在去年的一个项目Objective-C上做了类似的事情。我有一个包含SCN文件和附件的zip文件。其他资源。我用AFNetworkng下载了zip文件&然后我使用SSZipArchive将其解压缩到应用程序的文档文件夹。

在JSON文件中,我有我想要显示的节点的形状ID。

我构建了一个SCN文件资源的路径。为简洁起见,我删除了一些代码。

SCNSceneSource *sceneSource = [SCNSceneSource sceneSourceWithURL:documentsDirectoryURL options:nil]; 

newShapeNode = [sceneSource entryWithIdentifier:shapeID withClass:[SCNNode class]];

[parentNode addChildNode:newShapeNode];

这是下载方法 - 已编辑。

- (void) fetchRelease:(Album *) album usingProgressIndicator:(UIProgressView *) progressView completionHandler:(void(^)(NSError *error))completionHandler {
    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
    AFHTTPSessionManager *manager = [[AFHTTPSessionManager alloc] initWithSessionConfiguration:configuration];
    [manager.requestSerializer setAuthorizationHeaderFieldWithUsername:@"XXXXXXXX" password:@"XXXXXXX"];

    NSURL *URL = [NSURL URLWithString:album.url];
    NSURLRequest *request = [NSURLRequest requestWithURL:URL];

    NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:request progress:nil destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {
        return [self.documentsDirectoryURL URLByAppendingPathComponent:[response suggestedFilename]];
    } completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) {
        if (error != nil) {
            completionHandler(error);
        } else {
#ifdef DEBUG
            NSLog(@"File downloaded to: %@", filePath);
#endif
            NSError *error;
            [SSZipArchive unzipFileAtPath:filePath.path toDestination:self.documentsDirectoryURL.path overwrite:YES password:nil error:&error];
            if (error != nil) {
                completionHandler(error);
            } else {
                [self updateAlbumRelease:album];  // update the data model
                completionHandler(nil);
            }
        }
    }];

    if (progressView != nil) {
        [progressView setProgressWithDownloadProgressOfTask:downloadTask animated:YES];
    }
    [downloadTask resume];
}

以下是已编辑的pod文件:

platform :ios, '9.1'

target 'SOMEAPPNAME' do
pod 'SVProgressHUD'
pod 'SSZipArchive'
pod 'AFNetworking', '~> 3.0'
end