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