The singleton object returned by the global PluginManager() function,
exposing a small set of legacy Studio plugin utilities.
Its interface does not cross the network boundary.
Instances of this class cannot be created with Instance.new.
Tags: [NotCreatable, NotReplicated]
| Parameters (0) |
|---|
| No parameters. |
| Returns (1) |
|---|
| Instance |
Creates and returns a new Plugin object, attached to the current
place's data model. The returned plugin is associated with the plugin that
called this method, so it unloads together with its creator.
This method is deprecated. The steps to create a plugin have changed, and
new work should use Plugin directly rather than constructing one
through PluginManager(). Calling this method requires plugin security.
It exists only for backward compatibility, and should not be used for new work.
It may behave in a non-standard way.
History 2
Tags: [Deprecated, CustomLuaState]
| Parameters (1) | Default |
|---|
| filePath | string | |
| Returns (1) |
|---|
| null |
Exports all geometry in the place to an .obj file. The file is saved to
the path chosen by the user in a file save dialog; the filePath argument
is ignored.
History 3
| Parameters (1) | Default |
|---|
| filePath | string | |
| Returns (1) |
|---|
| null |
Exports all geometry in the current Selection to an .obj file.
The file is saved to the path chosen by the user in a file save dialog;
the filePath argument is ignored.
History 3