loading a texture from a server makes my texture more dark / increases...
![alt text][1]loading a texture from a server makes my texture darker / increases contrast. - does only happen on LINEAR colorspace, not on gamma. - code: https://pastebin.com/DKVhPNWz - i tried:...
View ArticleHow do you upload an AudioClip to a server?
My current approach is to take an AudioClip, turn it into a byte array, then put it into an UploadHandler, attached to a UnityWebRequest, to send a POST request to a server. Right now, when I pass...
View ArticleHandling internet connection status the fastest way
I am currently implementing an Internet connection status handler popup for an app, i activate certain popups the moment the user has internet connection or not. So far i have been testing with...
View ArticleUnityWebRequest.Put to AWS S3
I'm using the documentation shown in the link below to try and put some data into a .txt file I've got on my AWS S3 account: https://docs.unity3d.com/ScriptReference/Networking.UnityWebRequest.Put.html...
View Articlei want to pass header in login API using unity web request
using System.Collections; using System.Collections.Generic; using UnityEngine; using TMPro; using UnityEngine.Networking; using UnityEngine.UI; public class Login : MonoBehaviour { [SerializeField]...
View ArticleHow can I connect to OBS Websocket server and get the scene into Unity
I noticed that OBS has a Websocket server in-built, which provides us a port and everything. I am thinking if there is a way to access that Websocket server and retrieve OBS Virtual Camera feed...
View ArticleAdding variables as a parameter in a URI or URL
I'm trying to get an object from a Back 4 App database. The URI only seem to work if I hard code the parameters. This works: string uri =...
View Article