December 26, 20178 yr Bonjour Je trouve que le tracker est un outil super utile mais il pourrait l’être encore plus. Existe t il un moyen de chercher des Id d'objets plutôt que des noms ? Sera t il possible de l utiliser conjointement aux rotations ? Ainsi il sera "Formidable" avec ces deux fonctions complémentaires :) Bon courage...
December 31, 20178 yr Salut, Essaye un plugin comme: using robotManager.Products; public class Main : wManager.Plugin.IPlugin { private IProduct instanceFromOtherAssembly; public void Initialize() { instanceFromOtherAssembly = Products.LoadProductsWithoutInit("Tracker"); if (instanceFromOtherAssembly != null) { instanceFromOtherAssembly.Initialize(); instanceFromOtherAssembly.Start(); } } public void Dispose() { if (instanceFromOtherAssembly != null) { instanceFromOtherAssembly.Dispose(); instanceFromOtherAssembly = null; } } public void Settings() { } }
Create an account or sign in to comment