Forum Discussion
AndreaS1590
Aug 19, 2024Brass Contributor
How to identify a specific avatar. idAvatar?
Hi I need a kind of "idAvatar" to be able to allow or not allow certain actions. An example: wanting to use VR in the field of education if I am the teacher I can for example use a teleport and the ...
AndreaS1590
Aug 19, 2024Brass Contributor
Thank you kaipiroska. Good idea "the lock" 🙂 Could you be so kind as to give me an example of Cloud Scripting to get partecipant's name? Thank you
kaipiroska
Aug 19, 2024Brass Contributor
Can you figure it out from this snippet?
var participantargs = args.Participant;
participants += participantargs.DisplayName + ", ";
_logger.LogInformation(participantargs.ToString());
var participantargs = args.Participant;
participants += participantargs.DisplayName + ", ";
_logger.LogInformation(participantargs.ToString());
- AndreaS1590Aug 20, 2024Brass ContributorThank you
I need to study more about Cloud Scripting to get what I need.
I'm looking at Meta Horizon World, and they definitely have built core functions for goal setting, scoring, and leaderboards. This is what experiences are built around.
So I hope that Mesh can also use these features from Visual Scripting.
Hi