Skip to content
SceneKit expansion for MikuMikuDance
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
MMDSceneKit.xcodeproj Bugfix: Fix IK linkNo data length May 19, 2018
Sample_objc Fix float type Mar 4, 2018
Sample_swift Fix float type Mar 4, 2018
Source Change resource paths Sep 30, 2018
Tests Bugfix: Fix IK linkNo data length May 19, 2018
.gitignore fix PMMReader accessory data length May 30, 2017
.swift-version Fix podspec, add .swift-version Mar 4, 2018
LICENSE Initial commit Dec 13, 2015
MMDSceneKit.podspec v0.3.6 Sep 30, 2018
README.md
screenshot.png Add screenshot.png Dec 7, 2017

README.md

MMDSceneKit

SceneKit expansion for MikuMikuDance

ScreenShot

Install

Using CocoaPods

Add the following to your Podfile:

pod 'MMDSceneKit'

Manually

Download MMDSceneKit_vX.X.X.zip from Releases.

Usage

Swift

import MMDSceneKit

guard let sceneSource = MMDSceneSource(named: "art.scnassets/projectFile.pmm") else { return }
var scene = sceneSource.getScene()

Objective-C

@import MMDSceneKit;

MMDSceneSource *source = [[MMDSceneSource alloc] initWithNamed:@"art.scnassets/projectFile.pmm" options:nil models:nil];
SCNScene *scene = [source getScene];

See Also

MikuMikuDanceQuickLook - macOS QuickLook plugin for MikuMikuDance files

You can’t perform that action at this time.