コード例 #1
0
        public object LoadData()
        {
            byte[] bytes;
            if (!m_DataIO.TryLoad(out bytes))
            {
                #region DEBUG
#if UNITY_EDITOR
                UnityEngine.Debug.LogWarning("Data is not loaded!");
#endif
                #endregion
                return(null);
            }
            m_DataEncoder.DecodeNoGC(ref bytes);
            object data;
            if (!MyBinaryDataSerializer.Deserialize(bytes, out data))
            {
                #region DEBUG
#if UNITY_EDITOR
                UnityEngine.Debug.LogError("Data deserialization error!");
#endif
                #endregion
                return(null);
            }
            return(data);
        }
コード例 #2
0
        public void SaveData(object data)
        {
            byte[] bytes = null;
            if (!MyBinaryDataSerializer.Serialize(data, out bytes))
            {
                #region DEBUG
#if UNITY_EDITOR
                UnityEngine.Debug.LogError("Data serialization error!");
#endif
                #endregion
                return;
            }
            m_DataEncoder.EncodeNoGC(ref bytes);
            if (!m_DataIO.TrySave(bytes))
            {
                #region DEBUG
#if UNITY_EDITOR
                UnityEngine.Debug.LogError("Data saving error!");
#endif
                #endregion
                return;
            }
        }