Error: can not play disabled audio source, but the source isn't disabled, and...
Hi, I'm facing a very specific problem, so this question will have long and detailed explanations about the circumstances. If that's not your style, I don't suggest reading this, and it's okay, I can't...
View Articleunity android build error
When I try to build my project, I get these error messages. --------------------------------------------------------------------------------------------------------------------------------------- 1 *is...
View Articlehow do I fix this bug in my code "The name 'chessBoard' does not exist in the...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class pawn_movement : MonoBehaviour { Vector2 startpos; private bool isDragging; private float moves = 0; private...
View ArticleWhat is "ConditionalWeakTable" Exception Bug ?
I found this error in my Firebase log ------------------------------------ "key": "StackTrace", "string_value": " at System.Runtime.CompilerServices.ConditionalWeakTable`2", "key": "Error",...
View ArticleErrors with roll a ball
I'm really new to unity and I watched a lot of videos for roll a ball here's the code using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.InputSystem;...
View Articleerror CS0023: Operator '.' cannot be applied to operand of type 'void' I am...
void Update() { if (Input.GetKey(KeyCode.Q)) { StartCoroutine(isssinsideCoroutine()); } } IEnumerator isssinsideCoroutine() { Update().SetActive(false); yield return new WaitForSeconds(1);...
View Articleerror cs0103
i have the folowing error and im busy for over 3 hours trying to fix it but i can`t get it right error CS0103: The name 'characterController' does not exist in the current context my code: using...
View Article"Particle System has been destroyed but you're still trying to access it."
I'm making a first person shooter and the particle system for the muzzle flash keeps disappearing from the hierarchy every time I run the project. I've made sure that the particle system is in the...
View ArticleScriptable Object becomes Null randomly
To Keep things concise, I'd like to draw your attention to the two pseudo code comments in this script. For some reason, the debug.log under the first comment prints out the string field of the...
View ArticleNo usable version of libssl was found
spanish--- cuando abro el editor Unity 2021.3.16f1 Personal en Linux (Ubuntu 22.04) me aparece el error en el registro que dice: No usable version of libssl was found Aborted (core dumped) English---...
View ArticleI am getting an error how can I fix it,
You are trying to create a MonoBehaviour using the 'new' keyword. This is not allowed. MonoBehaviours can only be added using AddComponent(). Alternatively, your script can inherit from...
View ArticleHow to fix error CS1061?
I am new to unity and have been stuck on this error for 2 months now using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerMovement : MonoBehaviour { private...
View ArticleBurst error BC1016: The managed function `Unity.Entities.EntityManager.get_World
I have been working with Unity DOTS/ECS and have suddenly had this error pop up, I can't find the code responsible and have spent like 10 hours searching now without really knowing what I'm looking for...
View Articleit says LogicScript not found what do i do to make the error go away.
![alt text][1] [1]: /storage/temp/204210-wwww.png
View ArticleHow do you remove garbage collector compute buffer error while using...
I am trying to use Polybrush1.1.3 on UNITY 2021.3.8f1 and as soon as I install it form the package manager and start working on a plane with Polybrush, yellow error message shows up. The exact error...
View Articledani's grappling gun line 12
i was following dani's tutorial about the grapple gun and i just finished it and it says there is a NullReferenceException error on line 12 for the script gun rotation. *this is gun rotation* using...
View ArticleI got an error message called CS1529 does anyone know how I can fix this
// (c) Copyright HutongGames, LLC 2010-2016. All rights reserved. using Unity.MLAgents.Actuators; UnityEngine.UI; using UnityEngine; namespace HutongGames.PlayMaker.Actions {...
View Articleerrors after updating from from 2022.2.2f1 to 2022.2.3f1/2022.2.4f1 (HDRP)
I have a project in Unity 2022.2.2f1 that is working perfectly, no errors. when I try upgrading to unity 2022.2.3f1 or 2022.2.4f1 HDRP Wizard pops up and I get these 2 errors![alt text][1] [1]:...
View ArticleIdentifier Expected Error
Error at (41, 21): Identifier Expected What does this error mean and how can I fix it in this context? public class PlayerMovement : MonoBehaviour { public Rigidbody2D rb; //Rigidbody public float...
View ArticleCan someone point out my mistake?
I just started in Unity, so here is what I have: public class PlayerMovement : MonoBehaviour { private Rigidbody2D body; private void awake() { body = GetComponent Rigidbody2D(); } private void...
View Article