Jump to content

Tracker


PierreDeRosette

Recommended Posts

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
Share on other sites

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()
    {
    }
}

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...