I encoutered this problem trying to use custom animation graph for an avatar. When link was in quotes, it would silently load default animation graph instead, whitout any message in the logs. So for example:
animGraphUrl = "http://oaktown.pl/test/avatar-animation.json"
wouldn't work, and:
animGraphUrl = http://oaktown.pl/test/avatar-animation.json
would work correctly.
Documentation suggests using quotes around URL, which is misleading, and shouild be updated:
animGraphUrl = "URL"
Should be:
animGraphUrl = URL
With a note saying that it won't work with quotes.
I encoutered this problem trying to use custom animation graph for an avatar. When link was in quotes, it would silently load default animation graph instead, whitout any message in the logs. So for example:
animGraphUrl = "http://oaktown.pl/test/avatar-animation.json"
wouldn't work, and:
animGraphUrl = http://oaktown.pl/test/avatar-animation.json
would work correctly.
Documentation suggests using quotes around URL, which is misleading, and shouild be updated:
animGraphUrl = "URL"Should be:
animGraphUrl = URLWith a note saying that it won't work with quotes.