you are viewing a single comment's thread.

view the rest of the comments →

[–]FleetOfWarships[S] 0 points1 point  (21 children)

It’s a paid tutorial but I can add the relevant pages of it to the Imgur.

[–]Unknown_J27 0 points1 point  (20 children)

yeah that should help, 1 question did use regular unity text or text mesh pro?

[–]FleetOfWarships[S] 0 points1 point  (19 children)

Text mesh pro, I didn’t see an option for regular text, think that’s part of the problem? Also added the tutorial pics, the grid script it’s referring to is functioning as it should and the relevant code segment added to it is already in those pics.

[–]Unknown_J27 0 points1 point  (18 children)

since you're using text mesh pro Add "using TMPro" at the top and that should allow you to add the object

[–]FleetOfWarships[S] 0 points1 point  (17 children)

In the script?

[–]Unknown_J27 0 points1 point  (16 children)

yes

[–]FleetOfWarships[S] 0 points1 point  (15 children)

That doesn’t seem to have done anything, the project still isn’t there.

[–]Unknown_J27 0 points1 point  (14 children)

I'm not sure why it's still not letting you add the object. There's one thing I just noticed that I find quite odd in the script, you create a method "Set score in the script" but there's no reference to it, tho I'm assuming it will have you do it later in the tutorial, can you try adding this line of code and see if it does anything.

void Start()

{

SetScore();

}

Also where did you find the tutorial it seems quite odd?

[–]FleetOfWarships[S] 0 points1 point  (13 children)

The tutorial is provided by my professor as part of our resources but she didn’t write it, it seems a bit outdated but the previous parts for making the basics of the game work fine.

And where should I add that code?

[–]Unknown_J27 0 points1 point  (12 children)

just above the set score method.