2
votes
Accepted
Exporting steps/actions with a 3D Studio Max plugin
The plugin you have linked to doesn't seem to record command actions. Instead it records the modifier stack and allows the export of all animated parametric values. For example a cube of 1x1x1 is ...
2
votes
Accepted
Linking Unreal Engine with OpenCV libraries built with RTTI on Linux
I wasn't able to mix the RTTI and non-RTTI definitions but I was able to get Unreal to work with OpenCV on Linux. I did this by disabling the FLANN features. This can be done via a cmake switch. ...
2
votes
Unity crossplatform native plugins
No you dont need separate code base for this. Most of the functionality will probably be the same anyways. Only small parts will have to be different between platforms. In this case you can use C++ ...
2
votes
Accepted
Should I include 3rd party libraries in my Plugin?
There are several reasons why I don't like it when third-party DLLs are included in plugins:
There may be copyright/legal issues; does the 3rd-party library (Firebase in this case) allow you to ...
2
votes
Accepted
BeehaveTree Addon adds base node instead of an inherited one from the base
I don't believe there is a way to automatically do this, you will simply have to create a new script for each new type of node you want. Their manual gives examples:
...
1
vote
Accepted
Actual Custom Nodes in Godot
If you make an script like this:
@tool
extends CharacterBody2D
class_name Player2D
Then you can add a CharacterBody2D to your ...
1
vote
Blitting GStreamer's decoded buffer into a Unity render texture
Your issue here is that you're trying to create a shared handle from a resource created by unity. Textures created by unity won't have the flags you're looking for.
...
1
vote
Using CommonUI Plugin in Unreal Engine5 does not show any option in PlatformInput
The issue wasn't a bug, I had to enable at least one platform to make those settings appear. It requires, also, to delete temporary files such as Binary folder and then recreating the source project ...
1
vote
Show/hide soft-keyboard on demand
Forcing the keyboard to stay open may not be the best method as on some mobiles the keys will take up a good portion of the available screen space. If a user cannot un-focus the board it could lead to ...
1
vote
Accepted
Unity crossplatform native plugins
Native typically means that made for that target environment. I.e. native for iOS means it will only work on iOS. and native for Android or Windows means it will only run in its respective ...
1
vote
Send id<MTLTexture> from ios to unity
Don't try to cast string to IntPtr. char* is just pointer and any pointer(char*, void*,...) coming from native side unity treat it as IntPtr.
...
1
vote
Accepted
Runtime Java Module Generation for Game Plugins
You have to create a ModuleLayer from a Configuration. This requires a Set of ...
1
vote
Exporting steps/actions with a 3D Studio Max plugin
Short answer - See the Node Event System here.
Long answer -
First, the MaxScript Macro Recorder in 3ds Max does something like this. It outputs a script which can potentially be replayed to achieve ...
1
vote
Server crashes waiting for BungeeCord response after Thread.sleep()
Thread.sleep() essentially stops the gameplay loop entirely. You should not use it to await a response from BungeeCord, rather you should follow this documentation ...
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
plugin × 55unity × 25
android × 8
c++ × 6
java × 6
minecraft-modding × 6
unreal × 5
ios × 4
bukkit × 4
unreal-4 × 3
godot × 3
server × 3
godot-4 × 3
gdscript × 3
scripting × 2
modding × 2
google-play × 2
security × 2
google-play-services × 2
dll × 2
c# × 1
physics × 1
textures × 1
animation × 1
javascript × 1