Questions tagged [dll]
Dynamic-link library (DLL) is a module that contains functions and data that can be used by another module (application or DLL). The term is usally applied to native DLL, the .NET DLLs are usually referred just as 'library' and are vary different in nature and usage.
40 questions
0 votes
0 answers
112 views
DnSpy material editing/adding
I am trying to change a material of a game object in dnSpy, however I am not sure where the materials would be. I have looked in assembly-csharp.dll. Also, if or when I can find the materials, is it ...
3 votes
2 answers
931 views
How can I implement native c++ scripting like it's done in engines like Unreal and Godot?
I've been developing my own game engine and I'm kind of stuck in the process of scripting. I decided to use C++, since my game engine is mainly written in C++. (and don't suggest me other languages as ...
1 vote
0 answers
128 views
Creating an external tool to edit Unreal project optimization settings
INTRO I am creating a C++ app that will help users to set up optimization settings in the Unreal game engine. I want to let the program make all this work on its own. This application is being written ...
1 vote
1 answer
2k views
error CS1069: The type name 'ZipArchive' could not be found in the namespace 'System.IO.Compression'
When I build my project, which references the System.IO.Compression namespace, the build succeeds without issue inside Visual Studio. However, inside the Unity ...
-3 votes
1 answer
482 views
How can I execute a C# script even if my game is closed?
I've made a game with Unity and I want to execute a C# script that runs even the game was closed. I searched a lot but didn't find anything.
1 vote
1 answer
3k views
How do I compile a namespace to a .DLL in Unity?
I'm developing a core library that I will use in my other games. I've only heard of using Unity .DLLs recently, and have spent some time putting my core scripts into a namespace. If I understand .DLLs ...
2 votes
1 answer
878 views
Using DLL's for a cross-platform Unity Game
Just a quick theoretical question so I don't hit a landmine further down development. In my current project, I have quite a lot of dll's that I made myself for use in Unity. If I were to develop for ...
5 votes
1 answer
2k views
How to get a good Force Feedback .dll Feedback for Steering Wheels? || How to access Force Feedback without a .dll?
I want to implement a steering wheel with Force Feedback to my game and I encountered this problem: I couldnt do it with performance. I have found a .dll for that online, but it had issues like: It ...