Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 gertjan123 · Jun 29, 2012 at 12:17 PM · c#javascripttranslate

Translate code from C# to Javascript

Can someone please help translate this script? I've got this script from someone else, but I can only read unityjava. I've tryed something, but it's not working yet...

GameMenu.cs

using UnityEngine; using gui = UnityEngine.GUILayout;

public class GameMenu : MonoBehaviour { public GameObject PlayerPrefab; string ip = "127.0.0.1";

 public void CreatePlayer()
 {
     connected = true;
     var g = (GameObject)Network.Instantiate(PlayerPrefab, transform.position, transform.rotation, 1);
     g.camera.enabled = true;
     camera.enabled = false;
 }
 void OnDisconnectedFromServer()
 {
     connected = false;
 }
 void OnPlayerDisconnected(NetworkPlayer pl)
 {
     Network.DestroyPlayerObjects(pl);
 }
 void OnConnectedToServer()
 {
     CreatePlayer();
 }
 void OnServerInitialized()
 {
     CreatePlayer();
 }
 bool connected;
 void OnGUI()
 {
     if (!connected)
     {
         ip = gui.TextField(ip);
         if (gui.Button("connect"))
         {
             Network.Connect(ip, 1990);
         }
         if (gui.Button("host"))
         {
             Network.InitializeServer(10, 1990, false);
         }
     }
 }

}

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 AlucardJay · Jun 29, 2012 at 02:47 PM 0
Share

Here's some links I found useful in converting between C# / JS :

http://answers.unity3d.com/questions/12911/what-are-the-syntax-differences-in-c-and-javascrip.html

http://www.unifycommunity.com/wiki/index.php?title=Which_$$anonymous$$ind_Of_Array_Or_Collection_Should_I_Use?

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by dylanfries · Jun 29, 2012 at 01:03 PM

The only things that should really be different are the function headers and the stuff at the beginning. Try just creating a blank js file and see i you can translate it out. You might be surprised. Also defining variables will be different. All the unity specific stuff should be exactly the same.

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

6 People are following this question.

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

Related Questions

About "translating" js into C# 1 Answer

Help| Convert a javascript to C# 1 Answer

Translation music script from c# to js 1 Answer

Distribute terrain in zones 3 Answers

C# to java translation 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