I was wondering if anyone has had any success using Dreamlo high score board (This one:
https://www.assetstore.unity3d.com/#/content/3862 ) into Playmaker?
I have successfully used SendMessage() to send GetScores by changing this:
string highScores = "";
To this:
public string highScores = "";
and using Get Property to retrieve it.
But alas, that is as far as I've gotten. Plus the results I retrieve look something like this:
Test|999|0||12/29/2013 2:03:38 AM
I can remove pipes, but i'm still left with the annoying time and date, which is unneeded. I basically want something like this:
Test - 999
As if retrieving scores hasn't been hard enough, I haven't even started with sending scores
