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
-1
Question by zak666 · Mar 26, 2016 at 02:14 PM · scriptingbasics

trying to perform simple "doom reload" function. Assets/Scripts/Gunz/Machgun.cs(46,111): error CS0201: Only assignment, call, increment, decrement, and new object expressions can be used as a statement

Assets/Scripts/Gunz/Machgun.cs(46,111): error CS0201: Only assignment, call, increment, decrement, and new object expressions can be used as a statement

hi guys trying to make a simple reload function like in the old Pc gun games like doom act how the gun will just go out of screen and then u hear the sound then it will come back, have a transform where my hun normaly is and a transform for where it is when it reloads, so trying to make it go from one to the other and when it gets their it comes back.

 using UnityEngine;
 using System.Collections;
 using UnityEngine.UI;
 
 public class Machgun : MonoBehaviour {
 
     public float Clip = 30;
     public float Ammo = 300;
     public float ReloadSpeed = 12;
 
 
     public float fireRate = 0.00F;
     private float nextFire = 0.1F;
     public float FireSpeed = 3F;
 
     public Transform Gunposision;
     public Transform Reloadposision;
     public bool CanFire = true;
     public Text Cliptext;
 
     
     // Update is called once per frame
     void Update () {
 
         //CLip Display:
 
 //---------------------------------------------------------------------------------------------------------------------
         //Fireing Function:
         if (Input.GetButton ("z") && Clip > 0){
             if (Input.GetButton ("z") && Time.time > nextFire) {
                 nextFire = Time.time + fireRate * FireSpeed;
                 GameObject clone = Instantiate (MachGunBullets, transform.position, transform.rotation) as GameObject;
                 //gunflashed
                 Clip -= 1;
             }
         }
 //---------------------------------------------------------------------------------------------------------------------
 
         //Reload Function simple gun goes down, reaload sound gun comes back up.
         if(Clip < 1){
             this.transform.position = Reloadposision * ReloadSpeed * Time.deltaTime;
             this.transform.rotation = Reloadposision.rotation * ReloadSpeed * Time.deltaTime;
 
             if(this.transform.position = Reloadposision){
                 this.transform.position = Gunposision * ReloadSpeed * Time.deltaTime;
                 this.transform.rotation == Gunposision.rotation * ReloadSpeed * Time.deltaTime;
             
                 }
         }
 //---------------------------------------------------------------------------------------------------------------------
 
 
     } // End Update
 
 //---------------------------------------------------------------------------------------------------------------------
 
 
 }
Comment
Add comment
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

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by Downstream · Mar 26, 2016 at 02:24 PM

@zak666 You're using == on line 46. It's a comparison operator, it doesn't set the value. Whenever something basically ends up "orphaned" in the script it returns this error, here you have a lone true/false in your script all of a sudden.

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

38 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Google play services? 0 Answers

random an image after a event ends 0 Answers

Constructing the name of the variable being accessed 1 Answer

How to use Level of Detail on mesh terrain without gaps/holes 0 Answers

C# find game object with tag and set active? 2 Answers


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