11000+款5星资源
8.5万+用户参与评分
10万+社区成员鼎力支持
每款资源都经过 Unity 审核
显示 1 - 10 of 33
用户评论
排序
s
Error: CS0234
6 years ago
songkj1994基于上一个版本 4.0
At the moment of import, error CS0234 has stopped. How can I solve this?
I would be grateful if you could reply to songkj1994@gmail.com.
And I'm also curious about the developer email.
这条评论是否有帮助?
0
0
来自发布商的回复:
回复时间 6 years ago
Hello songkj1994,
This section is to leave your feedback about the plugin, this is not for support request so you have to drop me a email for support. This is very simple and stable plugin so there may be very small mistake, you can check yourself, I never faced this issue and not seems from my plugin.
I have searched my email box again and I haven't received your email. Please write me on my publisher email to get support faster.
Thanks.
The asset does what it promises, no complaints there. My only suggestion would be to expose at least some parts of the code to the user -either as open code, more modifier functions or more controllers on the inspector- so that we can have some control over the options.
Right out of the box, the asset saved the images in a low quality (even though according to the developer the quality is set to 75%). I emailed Devesh and he responded in minutes, and offered a modified dll (also apparently scheduled for update for other users), which is amazing. But, instead of having to write an email, I'd love to be able to play around myself. At least for certain things like file format or quality. If at some point I'd like to have transparency, file format will be an issue for instance and I'd rather do it on my own in a few clicks.
Again, this is a suggestion and the asset is already 5* for my use case.
这条评论是否有帮助?
0
0
来自发布商的回复:
回复时间 6 years ago
Dear sinabey,
Thanks for your honest feedback.
I understand your concern of saving image in reduced quality (75%), it was default value by unity while encoding to jpg. I will expose a parameter to set this value from your own, that is a great idea.
I really appreciate the customers who has given me brilliant suggestion and make my plugin nearly perfect.
Anyone can write me on publisher email if you think any feature should be there in plugin.
Thanks.
S
Easy to use Asset, and nice Developer
6 years ago
ShavSkelet基于上一个版本 4.0
Not only it is an easy to use asset, the developer answer my emails so quickly and give the right answer to everything. So happy with my purchase.
这条评论是否有帮助?
0
0
来自发布商的回复:
回复时间 6 years ago
Thank you for kind words. :)
W
Best Plugin for Screenshot!
6 years ago
WeAreCombos基于上一个版本 4.0
Amazing plugin! Work both iOS & Android and is really simple to use!
Recommended!
这条评论是否有帮助?
0
0
来自发布商的回复:
回复时间 6 years ago
Thank you so much for your feedback.
d
What's your time worth? Grab this and move on to other things.
6 years ago
dannyoakley基于上一个版本 4.0
I am not a great coder and this product was dead simple to use and allowed me to ditch my spaghetti code. Samples answered any questions I had. Well worth the 10 bucks.
这条评论是否有帮助?
0
0
That's awesome. I really like it. Works on Android and iOS.
Maybe you can help me with this issue on iOS:
It is not saving on camera roll. This is my code. What I'm doing wrong?
public class ScreenShot : MonoBehaviour {
CaptureAndSave snapShot;
public GameObject Panel_Back;
public GameObject Button_cameraRaw;
public GameObject Button_Switch;
private void Start()
{
#if PLATFORM_ANDROID
if (!Permission.HasUserAuthorizedPermission(Permission.ExternalStorageWrite))
{
Permission.RequestUserPermission(Permission.ExternalStorageWrite);
}
#endif
snapShot = GameObject.FindObjectOfType<CaptureAndSave>();
}
public void takeScreenShot(){
Panel_Back.SetActive(false);
Button_cameraRaw.GetComponent<Image>().enabled = false;
Button_Switch.SetActive(false);
StartCoroutine(wait());
//StartCoroutine(CRSaveScreenshot());
}
public IEnumerator wait()
{
snapShot.CaptureAndSaveToAlbum();
yield return new WaitForSeconds(1f);
Panel_Back.SetActive(true);
Button_cameraRaw.GetComponent<Image>().enabled = true;
Button_Switch.SetActive(true);
}
void OnScreenShot(Texture2D tex2D)
{
// assign screenshot
tex = tex2D;
}
}
这条评论是否有帮助?
0
0
来自发布商的回复:
回复时间 7 years ago
Dear Customer,
Please write me on publisher email id for any kind of support, that will be more convenient, this section is to share your feedback about plugin.
Thank you for being my customer.
a
Great Asset
7 years ago
ascarangello基于上一个版本 4.0
Asset works just great, and even when it didn't, the dev behind it was constantly helping me get it to work, responding to emails much faster than any other dev I've worked with. Great asset pack, great dev.
这条评论是否有帮助?
1
0
来自发布商的回复:
回复时间 7 years ago
Thanks!!!
Its my duty to solve issues of my customers having in my plugin. Thanks again for being my customer.
来自发布商的回复:
回复时间 7 years ago
Hi,
I am glad to hear that you like my plugin.
Thanks for appreciation :)
M
EXC_BAD_ACCESS(code=1, address=0x83)
8 years ago
MiflyDesign基于上一个版本 4.0
When I call SaveTextureToGallery(Texture2D tex) on iOS, I got:
"Thread 1: EXC_BAD_ACCESS(code=1, address=0x83)"
in xcode.
https://drive.google.com/open?id=1HrkW4H0lUxvJv5XSeCU0pSJ-elI_3wir
It crash on iOS. but works fine on Android.
-----------------------------------------------------------------------------------
After a few hours testing, you can't call SaveTextureToGallery(Texture2D tex) on iOS, it crash definitely.
You must call TransferToCameraRoll(string path) instead it.
My solution is call Unity buildin function: Application.CaptureScreenshot(string path)
Unity will saved in Application.persistentDataPath + the path you input.
Then call TransferToCameraRoll(string path), give the full path (contain Application.persistentDataPath), and that's work! cheers!
这条评论是否有帮助?
1
2
高品质资源
11000+款5星资源
深受用户信赖
8.5万+用户参与评分
强大的社区支持
10万+社区成员鼎力支持