/*WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW*\ ( ( ) )
|/ \| ) ) _((_
|| (c) Wanzyee Studio < wanzyeestudio.blogspot.com > || ( ( |_ _ |=n
|\ /| _____)) | ! ] U
\.ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ./ (_(__(S) |___*/
using UnityEngine;
namespace WanzyeeStudio.Json{
///
/// Custom Newtonsoft.Json.JsonConverter for UnityEngine.Quaternion.
///
public class QuaternionConverter : PartialConverter{
///
/// Get the property names include x, y, z, w.
///
/// The property names.
protected override string[] GetPropertyNames(){
return new []{"x", "y", "z", "w"};
}
}
}