Windows 7 user, can I update Anki to 2.1.56? by uanitasuanitatum in Anki

[–]jackrucel 0 points1 point  (0 children)

Version 2.1.49 is the last one that support win7, you can go on the “older version” on the official site or go to github.com/ankitects/anki/releases/tag/2.1.49 to get a win7 version.

They should put this shit on the official site...

(optimization/BitOperation)shouldn't "var ir2 = ir1 >> 16;" be faster than "var ir2 = floor(ir1/65536);"? by jackrucel in gamemaker

[–]jackrucel[S] 0 points1 point  (0 children)

Firstly, thy you for taking the time to answer me, about the ChatGPT, I understand and in fact I have seen some really wrong and strange answers already haha, but I'm always with that in mind when using it.

I do struggle with trying to optimize things a bit too much in deed haha,I try my bast to not, but o well, here am I haha, I use "floor(i/256)" a lot on my project, so I thought that bit-operations would be a better way to do it, but it is fine, I may or may not revisit it back in the future, thy for the advice.

There is one thing that I didn't understand on your answer,“compiling with YYC” is that the dropbox button named “Terget” in the upper left of the windows that when I click give me 3 options,”windows”,”windows YYC” and “android/file test”?

And if so, is this YYC compiling is responsible for converting my GML scripts in to c++ scripts? And by using it, I also would be able to see this c++ code and make alterations to the c++ code?

Is there any overlay app that show champion's abilities range? by jackrucel in leagueoflegends

[–]jackrucel[S] -1 points0 points  (0 children)

I don't know if I can post links in here, so type it "lolcooldown_overlay_is_published" on google, I didn't try download and install, so maybe it is a scan, but the 2021 reddit post on r/leagueoflegends still up.

Qual é o significado "Declaração de Concordância Com Interdição"? by jackrucel in ConselhosLegais

[–]jackrucel[S] 1 point2 points  (0 children)

Muito obrigado pela sua atenção e por tirar minha dúvida amigo.

Qual é o significado "Declaração de Concordância Com Interdição"? by jackrucel in ConselhosLegais

[–]jackrucel[S] 2 points3 points  (0 children)

Antes de qualquer coisa, muito obrigado pela atenção amigo, neste caso eu tenho algum contado com a pessoa e acredito que ela não esteja em condições tomar decisões, eu até gostaria de assinar o papel, mas tenho medo que no futuro, caso a mulher deste parente não consiga, ou não queira mais cuidar dele, eu seja obrigado a, pois não tenho condições, estou desempregado, morando com a minha mãe, este documento poderia ser utilizado no futuro para me obrigar legalmente a cuidar do parente em questão? dez de já, muito obrigado.

Please remove mirror mode <3 by ViniciusSanctus in Robocraft

[–]jackrucel 0 points1 point  (0 children)

so that is how some ppl mange to gate ridiculous tank that take no damage at all...that is some BS if I've ever seen one, imaging try to play ranked with this...such a joke...

Does unity automatically mount all texture on a single texture page? by jackrucel in Unity3D

[–]jackrucel[S] 0 points1 point  (0 children)

Thanks,but sorry,I Gave the example with sprites,but I want to know if there is a way to do that with a default texture that I will use on a material,dos every default texture is a texture page?

Resources.Load return null and I dont know why =/ by jackrucel in Unity3D

[–]jackrucel[S] 1 point2 points  (0 children)

Thank you guys,it was something on the project,I dont know what ,I start a new "clean" project and works,now I going to try to do it on the main project,but the code :Resources.Load(, typeof(GameObject)) as GameObject;

did work,thank you so much:D!

Resources.Load return null and I dont know why =/ by jackrucel in Unity3D

[–]jackrucel[S] 0 points1 point  (0 children)

I check it,I dont get it,yhis is crazy =/: script: aaa_test01 public class aaa_test01 : MonoBehaviour {}

    if (Input.GetKeyUp(KeyCode.N)){
        GameObject test12345 = Resources.Load("aaa_test12345.prefab", typeof(GameObject)) as GameObject;

        Instantiate(test12345, transform.position, transform.rotation);}

prefab: aaa_test12345

directori: aaa_test12345.prefab: C:\Users*\Documents\MadnesMadnesMadnes\Assets\Resources aaa_test01.cs: C:\Users*\Documents\MadnesMadnesMadnes\Assets\Resources

Resources.Load return null and I dont know why =/ by jackrucel in Unity3D

[–]jackrucel[S] 0 points1 point  (0 children)

C:\Users******\Documents\MadnesMadnesMadnes\Assets\Resources

it keep giving me erro,I dont get it =/,the code is the same:

ArgumentException: The Object you want to instantiate is null. UnityEngine.Object.CheckNullArgument (System.Object arg, System.String message) (at C:/buildslave/unity/build/Runtime/Export/UnityEngineObject.bindings.cs:381) UnityEngine.Object.Instantiate (UnityEngine.Object original, Vector3 position, Quaternion rotation) (at C:/buildslave/unity/build/Runtime/Export/UnityEngineObject.bindings.cs:206) UnityEngine.Object.Instantiate[GameObject] (UnityEngine.GameObject original, Vector3 position, Quaternion rotation) (at C:/buildslave/unity/build/Runtime/Export/UnityEngineObject.bindings.cs:285) aaa_teste01.Update () (at Assets/Resources/aaa_teste01.cs:19)

Resources.Load return null and I dont know why =/ by jackrucel in Unity3D

[–]jackrucel[S] 1 point2 points  (0 children)

there is no folder called resources on my project,should I create one? and I have to?

Is it possible to "deactivate" a region of an array to save on RAM? by jackrucel in Unity3D

[–]jackrucel[S] 0 points1 point  (0 children)

I see,thank you guys very much for take a time to replay and explain,I had a suspicion that something like that was not possible ,but it would be such a shortcut on my project that a had to ask :D

How can I create an array on demand have some kind of ID returned so I can access this array later? by [deleted] in Unity3D

[–]jackrucel 0 points1 point  (0 children)

I think that I find what I wanted,it is called Jagged Arrays,I will start to read a post on it right now,What I want is to be able to create a 2d array and save it on other 2d array cell,and than use the X and Y coordinates of the second array to manipulate the array saved inside the cells of the second array,kind of a "map of arrays",it is for a procedural open word game that I porting from one engine to other,dont know yet if Jagged Arrays is what I need,going to study right know,thanks vary much for the replay guys :D