User Tools

Site Tools


tutorials:advanced:create-module-lib

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
tutorials:advanced:create-module-lib [2025/04/02 16:09] gaetantutorials:advanced:create-module-lib [2025/04/02 16:26] (current) gaetan
Line 68: Line 68:
  
 Then, restart GroIMP to load the library. Then, restart GroIMP to load the library.
 +
 +Now let's open a new project (''newRGG'' for instance).
  
 ==== Type ==== ==== Type ====
 +
 +The types from the module library can be imported in the project like any other classes: 
 +''import pkg.example.An.A;''
 +
 +The pattern is: ''import {package name}.{File name}.{Class/module name};''.
 +
 +Notice that the name of the file is required in the import. GroIMP implicitly create classes with the name of the files to wrap all types defined in .rgg classes.
 +
 +**Note:** in the ''newRGG'' project, if you import ''An.A'', "nothing" visible will happen. Because the project also declare a type called ''A''. So, in order to adds An.A to the project you can either use its full name, or hide (by deleting?) the module A declaration.
 +
 +The Node An.A have the shader from their original project, i.e. the one with the image.  
 +
  
 ==== Resources ==== ==== Resources ====
  
 +Resources from module lib can also be used without classes. You can use the shader ''testshader'' on any module in your project with: 
 +
 +<code java>
 +module A(float len) extends Sphere(0.1)
 +{
 + {setShader(shader("plg:pkg.example.Test:testshader"));}
 +}
 +</code>
 +
 +The Shader reference use the path: ''plg:{package name}.{plugin name}:{resource name}''
tutorials/advanced/create-module-lib.txt · Last modified: 2025/04/02 16:26 by gaetan