Scrolling example, on youtube.
Friday, 31 March 2023
Thursday, 30 March 2023
Unity SpriteRenderer "error"
how to solve this error...
error CS1061: 'SpriteRenderer' does not contain a definition for 'IsUsingDeformableBuffer'
TO SOLVE THIS ERROR, GO TO "WINDOW-PACKAGEMANAGER" AND RESET PACKAGES:
"got to PackageManager, type 2D remove all, and install it again!"
thanks to https://stackoverflow.com/questions/71168878/unity-spriterenderer-error-what-i-need-to-do
Wednesday, 29 March 2023
Intellisense
Intellisense (auto code)
We go to:
EDIT-PREFERENCES-EXTERNAL TOOLS
Select «Visual Studio».
IN «Generate csproj files», check everything
Tuesday, 28 March 2023
HUGE COMPONENTS SIZE
Componentes «gigantes»
PROBLEM: big size components on our editor.
SOLVE:
add your «Camera» inside your «Canvas»:
1- in «Canvas», «Render Mode» select «Screen Space-Camera»
2- drag and drop «Main Camera» to «Render Camera» Canvas ( inspector)

Variables between scripts
If we want to access one variable (int data) from an external script, we must do: 1-ORIGINAL ONE.cs public static int data = 0 ; 2-...

-
Componentes «gigantes» PROBLEM: big size components on our editor. SOLVE: add your «Camera» insi...
-
Intellisense (auto code) We go to: EDIT-PREFERENCES-EXTERNAL TOOLS Select «Visual Stud...