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 Trancek · Mar 05, 2011 at 04:57 AM · errorsyntax-erroruce0001

Scripting Error when drawing texture to custom window; What am I doing wrong?

Hi all, I'm about a week into the Unity scene and I'm currently working on a 2D platformer with some friends. Currently I'm playing around with Editor GUI scripting, and I'm puzzled by a pair of errors I'm getting.

What I want at the moment is a small window which contains a single square texture. It's supposed to load a prefab consisting of a single cube, and use its texture to determine what to draw in the window. However this code:

class TestWindow extends EditorWindow {

@MenuItem ("Window/Test Window") static function ShowWindow() { EditorWindow.GetWindow(TestWindow); }

function OnGUI () { GameObject obj = Resources.Load("tiles/base/base_1x1"); Material mat = obj.renderer.material; GUI.DrawTexture(Rect(10,10,128,128), mat.mainTexture, ScaleMode.ScaleToFit, true, 0); }

}

Produces this feedback from the compiler:

Assets.Editor.TestWindow.js(11,27): UCE0001: ";" expected. Insert a semicolon at the end. Assets.Editor.TestWindow.js(12,25): UCE0001: ";" expected. Insert a semicolon at the end.

Which points to the two lines which load the prefab and get the material. Where did I go wrong?

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

Answer by Trancek · Mar 05, 2011 at 05:09 AM

D'oh! My error was that I was coming back to JavaScript from working in C#. I was declaring the GameObject and Material wrong.

It should've been:

var obj : GameObject = Resources.Load("tiles/base/base_1x1");
var mat: Material = obj.renderer.material;

Disregard!

Comment
Add comment · Show 1 · 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
avatar image Joshua · Apr 26, 2011 at 03:35 PM 0
Share

Yeah the syntax can get fuzzy in your head of you'e going from one language to an other ;)

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

No one has followed this question yet.

Related Questions

Collision Detector script 1 Answer

Desintergrate Enemies on Dying 4 Answers

script help 2 Answers

whats wrong wrong with my script 4 Answers

at booster to an object 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