Posts by Miguel Soeiro • 312 points
11 posts
-
5
votes2
answers1124
viewsA: c# - Unity - Error: Object Reference not set to an instance of an Object
In order to resolve this issue you will have to check whether Hierarchy, in Gameobject Player is tagged Player. Just like in this picture: Since in this line of code I would have to have that tag,…
-
0
votes1
answer790
viewsQ: C++ - Movement on the X-axis (animation) - Opengl
I have been trying to make a simple animation on the x-axis, where I have a chair and I have it drawn by several cubes, and in all these cubes I intend to move the x-variable of them, so that they…
-
1
votes1
answer348
viewsA: complication when opening monodevelop by unit3d personal
This problem can be solved through three steps: First Stage: Edit > Preferences > External Tools > External Script Editor Then just choose the option as it is in the image: When you get to…
-
1
votes1
answer1725
viewsA: How to test an app created on Unity for Android in a logcat emulator like in Android Studio?
Yes, there is a way. It’s an app called Unityremote 4, in this link you can find all the information on how to configure, you can do it without generating the APK, if you want to use it on a…
-
0
votes1
answer367
viewsA: Doubt about jTextArea.append (add the value of the area variable to Borderlayout) - Java
This is the code used in the function main, where the function makes the call show insight() of each class, my project had several figures, but in question in my question was the figure rectangle,…
-
0
votes2
answers1986
viewsA: JAVA - Draw Polygons (triangles, pentagons)
That’s how I was able to solve my problem and design a pentagon, in this case it’s a pentagon emptiness, or just have the lines of your perimeter: public class Pentagono extends Figura { int[]…
-
0
votes3
answers2095
viewsA: Extremely slow site loading in Wordpres
I think the problem should not be caused by plugins and widgets, I joined the Website and it took only 2 seconds to enter, I entered again and I did this process 3 times, none of the times the…
wordpressanswered Miguel Soeiro 312 -
3
votes2
answers3032
viewsA: Test a new theme in Wordpress without losing the previous theme changes
I will make available two methods that I think are appropriate to the issue: First Method: There are several possibilities that can be used in this case, one of which may be easier is to use a…
-
1
votes1
answer367
viewsQ: Doubt about jTextArea.append (add the value of the area variable to Borderlayout) - Java
I have a problem with a line of code, this line that is underlined in the image, gives me an error that says that the coordinates X1, Y1, x2, Y2 have to be static, it turns out that this application…
-
3
votes1
answer143
viewsQ: How to call the value of a variable?
How can I call the value of a function variable into another function? I’m using the jPanel, where I will add a text with: jTextArea.append("AREA = " + /*AQUI*/); Where it says HERE I wanted to put…
-
4
votes2
answers1986
viewsQ: JAVA - Draw Polygons (triangles, pentagons)
I was wondering if anyone could help me, I’m doing a project where I have to draw various figures, between them triangles and pentagons, I’ve already got the rectangles working, rectangles: import…