Advertisement
DimitriX89

IMVUnity minimal loader

Oct 9th, 2019
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. using UnityEngine;
  2. using ner.Imvu;
  3.  
  4. public class ImvunityLoaderShort : LocalAssetLoader
  5. {
  6. // Start is called before the first frame update
  7. void Start()
  8. {
  9. Imvu.Connect("username", "password").Then(
  10. userModel => Load(userModel)
  11. );
  12. }
  13.  
  14. // Update is called once per frame
  15. void Update()
  16. {
  17.  
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement