- Post your Feature Requests in this thread -
Re: - Post your Feature Requests in this thread -
Hi, as we discussed in the ticket, I'd like to have the feature to support for generic glasses, with which it won't be necessary for create a non-generic subclass.
Re: - Post your Feature Requests in this thread -
Hi there,
There is already a feature request for this which you can vote on here:
https://moodkie.com/forum/viewtopic.php ... eric#p4651
All the best,
Joel
-
- Posts: 1
- Joined: Sat Aug 12, 2023 8:27 am
Re: - Post your Feature Requests in this thread -
Hello! Rewired integration would be great. I'm a visual scripter and getting these two work together is a bit too much for me. Here is Rewired's documentation page about User Data Store: https://guavaman.com/projects/rewired/d ... Store.html
Re: - Post your Feature Requests in this thread -
Hi there,Crystalius wrote: ↑Sat Aug 12, 2023 8:33 am Hello! Rewired integration would be great. I'm a visual scripter and getting these two work together is a bit too much for me. Here is Rewired's documentation page about User Data Store: https://guavaman.com/projects/rewired/d ... Store.html
We don't provide support for saving specific assets as it's the responsibility of the asset's developer to ensure their classes are serializable at runtime. However, what you've linked indicates that they have their own save system so I'm not sure what we would be integrating with that.
All the best,
Joel
Ultimate inventory system integration
Please add support/integration for ultimate inventory system by opsive.
their save system is great but it just can't beat es3 in terms of saving other things.
for uis and easy save 3 to work you'd have to do some assembly stuff.
their save system is great but it just can't beat es3 in terms of saving other things.
for uis and easy save 3 to work you'd have to do some assembly stuff.
Re: Ultimate inventory system integration
Hi there,
Unfortunately we can't provide support for saving and loading specific assets as it would be their responsibility to ensure that their classes are serializable at runtime.
All the best,
Joel
Re: - Post your Feature Requests in this thread -
Hope support save inherited fields.
Now ES3 will only serialize the declared fields of normal class, I understand it maybe for performance or safety.
But create ES3Type for every class is very difficult, especially when there are hundreds of small data types.
How about add a new attribute such as "ES3IncludeBaseType"?
Now ES3 will only serialize the declared fields of normal class, I understand it maybe for performance or safety.
But create ES3Type for every class is very difficult, especially when there are hundreds of small data types.
How about add a new attribute such as "ES3IncludeBaseType"?
Code: Select all
public class Item { [ES3Serializable] string Id; }
[ES3IncludeBaseType( typeof(Item) )]
public class Weapon : Item { [ES3Serializable] int Price; }
[ES3IncludeBaseType( typeof(Weapon) )]
public class Axe : Weapon { [ES3Serializable] float Damage; }
Re: - Post your Feature Requests in this thread -
Hi there,nilan256 wrote: ↑Sun Jun 09, 2024 3:49 am Hope support save inherited fields.
Now ES3 will only serialize the declared fields of normal class, I understand it maybe for performance or safety.
But create ES3Type for every class is very difficult, especially when there are hundreds of small data types.
How about add a new attribute such as "ES3IncludeBaseType"?
Code: Select all
public class Item { [ES3Serializable] string Id; } [ES3IncludeBaseType( typeof(Item) )] public class Weapon : Item { [ES3Serializable] int Price; } [ES3IncludeBaseType( typeof(Weapon) )] public class Axe : Weapon { [ES3Serializable] float Damage; }
I've created a feature request for this here:
https://moodkie.com/forum/viewtopic.php?p=12053#p12053
All the best,
Joel
Re: - Post your Feature Requests in this thread -
Hello !
Before buying ES3 we were using PlayerPrefs and an editor tool to change the values really easy while playing or while off.
Is there any way to continue doing so? I changed the default settings of ES3 to save in PlayerPrefs but now I can't because it's in a different format.
Is there any easy way to do this? If not, I believe that having a window to change the saved data would be really nice.
Thanks !
Before buying ES3 we were using PlayerPrefs and an editor tool to change the values really easy while playing or while off.
Is there any way to continue doing so? I changed the default settings of ES3 to save in PlayerPrefs but now I can't because it's in a different format.
Is there any easy way to do this? If not, I believe that having a window to change the saved data would be really nice.
Thanks !
Re: - Post your Feature Requests in this thread -
Hi there,guidod wrote: ↑Wed Jul 10, 2024 7:33 am Hello !
Before buying ES3 we were using PlayerPrefs and an editor tool to change the values really easy while playing or while off.
Is there any way to continue doing so? I changed the default settings of ES3 to save in PlayerPrefs but now I can't because it's in a different format.
Is there any easy way to do this? If not, I believe that having a window to change the saved data would be really nice.
Thanks !
As Easy Save stores data as JSON, which is text-based, you can open the file and modify the values directly. However, we do have a feature request for a File Editor here which you can vote on: https://moodkie.com/forum/viewtopic.php ... itor#p5424
All the best,
Joel