WorldViz User Forum  

Go Back   WorldViz User Forum > Plug-in development

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 10-10-2014, 08:05 AM
ICT4Health ICT4Health is offline
Member
 
Join Date: Oct 2014
Posts: 1
Custom plug-in

Hello,
I need to develop a plug-in for a custom sensor. I have a development licence.

I followed the tutorial for the Visual Studio setup here:
http://docs.worldviz.com/vizard/#Usi...20SDK%7C_____2

Then I created a simple code that do nothing with the informations at this link:
http://docs.worldviz.com/vizard/#Ext...20SDK%7C_____3

So at the end I created two files:

MyExtension.h

Code:
#include <viz/Extension>
 
class MyExtension : public viz::Extension
{
public:
    MyExtension(void);
 
    virtual const char* getName() const { return "My Extension"; }
 
protected:
    
	virtual ~MyExtension(void);
};


MyExtension.cpp

Code:
#include "MyExtension.h"

extern "C" __declspec(dllexport) viz::Extension* CreateVizardExtension(viz::Data &data)
{
    return new MyExtension();
}

MyExtension::MyExtension(void) : viz::Extension()
{
}

MyExtension::~MyExtension(void)
{

}

Then I geneerated the MyExtension.dle and tried to load it with Vizard 5 with the following code
Code:
import viz
viz.go()
mysensor = viz.add('MyExtension.dle')

The result is the error:

ERROR: Failed to load plug-in: 'MyExtension.dle'

What am I missing?
Reply With Quote
  #2  
Old 11-13-2014, 11:17 PM
mellott124 mellott124 is offline
Member
 
Join Date: Jul 2014
Posts: 20
Make sure your plug-in is in the Vizard plug-in folder. Otherwise it seems fine.
Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding custom faces mjabon Vizard 2 04-01-2009 08:34 PM
How do I add custom functions to a custom plugin? reedev Plug-in development 7 02-01-2009 03:39 AM
Custom Drop-Down Menus and Sliders south_bank Vizard 2 05-20-2008 04:27 AM
animating custom faces: in search of "open_mouth" morphs vr_boyko Vizard 1 09-16-2004 10:30 AM
Creating Custom Avatar Heads farshizzo Vizard 22 09-12-2004 09:23 PM


All times are GMT -7. The time now is 10:23 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC