This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* このスクリプトを実行すると、 | |
* モーション保存ダイアログ (カメラまたはモデル) の | |
* 出力開始フレームを現在位置にしたり、 | |
* 出力ファイルを記憶したりするようになる。 | |
* Scripts\Init に入れるといいです。 | |
* | |
* MMM 0.5.1.0 で動作確認。 | |
*/ | |
#include "Util/ReflectionUtil.lsms" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 二つのモーフのキーフレームを全部入れ替える | |
*/ | |
#include "Util/SystemUtil.lsms" | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Please see the following url for latest format definition: | |
https://github.com/mfakane/Keystone/blob/master/Keystone.IO/MikuMikuMoving/MvdFormat.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
<ListBox> | |
<i:Interaction.Behaviors> | |
<v:MetroAnimateItemsBehavior /> | |
</i:Interaction.Behaviors> | |
</ListBox> | |
*/ | |
using System; | |
using System.Collections.Generic; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
<ListBox> | |
<i:Interaction.Behaviors> | |
<v:DragDropBehavior /> | |
</i:Interaction.Behaviors> | |
</ListBox> | |
*/ | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Windows; | |
using System.Windows.Data; | |
namespace Linearstar.Lavis.Presentation | |
{ | |
public class DependencyPropertyListener : DependencyObject | |
{ | |
public static readonly DependencyProperty ValueProperty = DependencyProperty.Register("Value", typeof(object), typeof(DependencyPropertyListener), new PropertyMetadata((sender, e) => | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// requires SlimDX (or any 3D mathmatics library) and Keystone.IO | |
// Keystone.IO: https://github.com/mfakane/Keystone/tree/master/Keystone.IO | |
using System.IO; | |
using Linearstar.Keystone.IO.MikuMikuDance; | |
using SlimDX; | |
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Please see the following url for the latest format definition: | |
http://github.com/mfakane/Keystone/blob/master/Keystone.IO/MikuMikuDance/Pmd/PmdFormat.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Reactive.Linq; | |
using System.Reactive.Threading.Tasks; | |
using System.Threading.Tasks; | |
using Codeplex.OAuth; | |
using Linearstar.Psycho; | |
namespace ConsoleApplication1 |