Runtime scripting: Missing usings for sample code
- This topic has 1 reply, 2 voices, and was last updated 2 weeks, 2 days ago by .
- You must be logged in to reply to this topic.
Welcome to Portals United! / Forums / Troubleshooting / Runtime scripting: Missing usings for sample code
Hi,
we are working with the runtime scripting feature following the documentation (https://www.portalsunited.com/docs/worldbuilder-runtime-scripting-documentation/). Unfortunately the samples are missing the needed usings. I managed to get the MyHoverComponent.cs working with following usings (thanks Vittorio):
using Newtonsoft.Json;
using System.Collections.Generic;
using UnityEngine;
using WorldBuilder.Core.Components;
How is it with the MyHoverComponentInspectorView.cs?
Best regards
Moritz
Using UnityEngine;
using UnityEngine.UIElements;
using System;
using System.Collections.Generic;
using WorldBuilder.Misc;
using WorldBuilder.Plugins;
using WorldBuilder.Plugins.UI;