PierreDeRosette 13 Posted December 26, 2017 Share Posted December 26, 2017 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... Link to comment https://wrobot.eu/forums/topic/8111-tracker/ Share on other sites More sharing options...
Droidz 2738 Posted December 31, 2017 Share Posted December 31, 2017 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() { } } PierreDeRosette 1 Link to comment https://wrobot.eu/forums/topic/8111-tracker/#findComment-37248 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now