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 /
avatar image
0
Question by saoirreality06 · May 28, 2019 at 06:07 PM · android buildnamespacevirtualreality

"Namespace Error" when there shouldn't be

Hi, I am new to Unity and C#. I have been working on this virtual reality game project for a while now (Oculus Quest) and I would like to get it to work. Since I switched to the Android platform I have been running into some namespace errors when I press "Build". Keep in mind that my code has worked perfectly before when clicking 'Play' both on Android and not. It is just errors when I press 'Build'.

alt text

alt text

i

Here is my code:

 using System;
 using System.Collections.Generic;
 using System.Linq;
 using UnityEngine;
 using UnityEngine.Windows.Speech;
 
 public class CommandBook : MonoBehaviour
 {
 
 
 
 
 
     private Dictionary<string, Action> keywordActions = new Dictionary<string, Action>();
     private KeywordRecognizer keyword;
 
 
     private void Start()
     {
         keywordActions.Add("Hold", Levitate);
         keywordActions.Add("Thrusters Enguaged", Thrusters);
         keywordActions.Add("Fire", Cannon);
         keywordActions.Add("Lockdown", Spirit);
 
 
         keyword = new KeywordRecognizer(keywordActions.Keys.ToArray());
         keyword.OnPhraseRecognized += OnKeywordsRecognized;
         keyword.Start();
     }
 
     private void OnKeywordsRecognized(PhraseRecognizedEventArgs args)
     {
         //Debug.Log("Keyword: " + args.text);
         keywordActions[args.text].Invoke();
     }
 
 
 
   
     public CommandActivation commands;
 
 
     public void Levitate()
     {
         print("Hovering");
     }
 
     //Launches a projectile
     public void Thrusters()
     {
 
         print("Thrusters Enguaged");
 
     }
 
     public void Cannon()
     {
         commands.cannonball();
         print("Cannon Fired");
     }
 
     public void Spirit()
     {
         print("Lockdown In Play");
     }
 
 
 }

i
i
Here is my code that is connected to my piece above:

 using UnityEngine;
 
 
 public class CommandActivation : MonoBehaviour
 {
     //Projectiles if there is any 
     public Rigidbody CannonProjectile;
 
     public Transform tip;
 
     public void cannonball()
     {
         Rigidbody cannonproj;
         cannonproj = Instantiate(CannonProjectile, tip.position, tip.rotation) as Rigidbody;
 
         cannonproj.velocity = tip.forward * 50;
     }
 
 }

i
i
Like I said it works just fine in the editor, but when I press 'Build' or 'Build and Run' it throws these errors at me. This is the core of my game and I have many many ideas orbiting this core mechanic. I had high hopes that this would work, so if anyone could help me I would be very happy.

Thank you

capture.png (49.9 kB)
capture1.png (62.9 kB)
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

0 Replies

· Add your reply
  • Sort: 

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

112 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 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 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

why is the center of my field of view pixelated on my phone when testing for vr 1 Answer

Oculus Quest Haptics Feedback not working when building 1 Answer

Unity app not running in Android phone. 0 Answers

How to make a virtual reality button in unity to click certain object 0 Answers

How do I generate tadium crowd for VR game? 0 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