Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by Dark-Fury · Oct 11, 2015 at 12:43 PM · if-statementsrandom.rangebooloperator

Assets/Movement.cs(24,21): error CS0019: Operator `==' cannot be applied to operands of type `bool' and `int'

Im making a sort of random movement AI for enemies, where the direction they would go is determined by the numbers 1-4 randomly chosen by the Random.Range(1,4) command.

 using UnityEngine;
 using System.Collections;
 
 public class Movement : MonoBehaviour {
     public int moveSpeed = 10;  
     public int computerDirection;
     Vector3 moveDirection = new Vector3(-1, 0, 0);
     bool movingLeft = false;
     bool movingRight = false;
     bool movingUp = false;
     bool movingDown = false;
     bool Movementnumber = Vector3(Random.Range(1,5));
 
     // Use this for initialization
     void Start () {
     
     }
 
     void update (){
         Coroutine(Movement);
         int Movementnumber = Vector3(Random.Range(1,4));
     }
     public Movement(){
         if (Movementnumber == 1){
             moveDirection = new Vector3 (1, 0, 0);
             movingLeft = true;
         }
         if (Movementnumber == 2){
             moveDirection = new Vector3 (-1, 0, 0);
             movingRight = true;
         }
         if (Movementnumber == 3){
             moveDirection = new Vector3 (0, 1, 0);
             movingRight = true;
         }
         if (Movementnumber == 4){
             moveDirection = new Vector3 (0, -1, 0);
             movingRight = true;
         }
     }

When i try to use Random.Range this way, i always get a error which tells me that '==' can't be applied to bool and int. I don't know what is actually happening in this case, since im just saying for that section of the code to initiate when 'Random.Range(1,4)' reaches one of those numbers, and that the 'Movementnumber' is supposed to be that number which is randomly picked. Am i missing something in all this?

Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Linus · Oct 11, 2015 at 12:43 PM 0
Share

Cleaned up the code formatting. $$anonymous$$oved to Help Room. CS0019 could not be added as topic....

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by Linus · Oct 11, 2015 at 12:47 PM

You are setting Movementnumber to be a Vector3.

 //    int Movementnumber = Vector3(Random.Range(1,4)); 
 //Should be int 
 int Movementnumber = Random.Range(1,4);

Also, you have a lower u in update. It should be Update()

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

C# Greater Than or Equal To 1 Answer

The bool activates and deactivates but the script in the if statement doesn´t work 1 Answer

Tutorial 3.1-7 "&& isOnGround == true" 0 Answers

Execution order of conditional operators in an if-statement 1 Answer

Issue with if-statements requiring two conditions. 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges