Posts by Andeton Feitosa • 38 points
8 posts
-
0
votes1
answer28
viewsA: Send Blob/Arraybuffer object by Websocket
After a while in this problem I solved, and I come here to leave the answer in case someone finds this question later. I solved with the following code socket.send("{\"data\":\"" +…
-
1
votes1
answer28
viewsQ: Send Blob/Arraybuffer object by Websocket
I am making a Websocket connection and trying to send a Blob/Arraybuffer object resulting from a screen save, but what arrives on the server instead of bytes is [object ArrayBuffer] Example of a…
-
0
votes2
answers77
viewsA: Send data via the form without refresh
You can send the form data by changing the send button and using Jquery as follows. <input id="enviar" type="button" value="Enviar"> $('input#enviar').click(function () { $.post( 'url',…
-
0
votes1
answer72
viewsA: Accessing Animator Unity 2019 methods
Just change playerAnimator.SetBool("grounded", Grounded); for playerAnimator.SetBool("grounded", true);
unity3danswered Andeton Feitosa 38 -
1
votes1
answer88
viewsQ: Fill variable with different types
I have many fields to pick up so it is very bad to make a function for each connection and they are uncharted banks so using something like the Entity Framework is also not feasible if (1 == 1) {…
-
0
votes2
answers367
viewsA: Artificial Intelligence for Games in Unity
Artificial intelligence for games is a series of standards running for certain actions, not worth using machine-Learning or deep-Learning, I would do something like this bool acao = false; void…
-
0
votes1
answer50
viewsA: Ambiguity error Asp.net mvc
Doesn’t have 2 ActionResult with the same name no? If yes, the arguments are not enough to differentiate the 2.
-
0
votes1
answer20
viewsQ: How to avoid automatic datetime field formation in Mysql with Asp Net?
I’m trying to read datetime fields with Mysql.Data.Mysqlclient, but the value that returns is always different from what is in the database, for example in this bank "2002-05-01 00:00:00.000" but…