C
C#discount

help needed with accesing a variable in another script

im trying to acces isgrounded in another script and have it be the same as hi but i get this error
No description
No description
D
discount15d ago
fallingplatform is the name of the script i wrote this in playerscript is another script
A
Angius15d ago
Well, access has not been initialized with any value And does playerscript class even have an isGrounded member? Also, is that Unity?
D
discount15d ago
yea and yea its unity
No description
A
Angius15d ago
That is a method Methods are called IsGrounded() (they're named with PascalCase too, btw) (just like classes)
D
discount15d ago
ooooh do you know how i can us the method in the other script
A
Angius15d ago
Considering how it's an instance method, you will need an instance of that class If it's in a different namespace, that namespace will need to be imported And, well, the method needs to be called of course .IsGrounded() not .IsGrounded
D
discount15d ago
i have no idea how to do that
A
Angius15d ago
var script = new PlayerScript();
var grounded = script.IsGrounded();
var script = new PlayerScript();
var grounded = script.IsGrounded();
for example
D
discount15d ago
i get an this error twice The contextual keyword 'var' may only appear within a local variable declaration or in script code A field initializer cannot reference the non-static field, method, or property 'fallingplatform.script' i also get this one
K
Kouhai /人◕ ‿‿ ◕人\15d ago
The contextual keyword 'var' may only appear within a local variable declaration or in script code Means you can't do
class Foo
{
var bar = ""; // Compile time error
}
class Foo
{
var bar = ""; // Compile time error
}
A field initializer cannot reference the non-static field, method, or property 'fallingplatform.script' Means you can't do
class Foo
{
string val = GetName(); // Compile time error
string GetName()
{
return "John Doe";
}
}
class Foo
{
string val = GetName(); // Compile time error
string GetName()
{
return "John Doe";
}
}
Want results from more Discord servers?
Add your server
More Posts
Issue with websocket within a serviceIm having troubles using a websocket service within other parts of my projects, cannot use the Send HelpI'm new to C# in VSC and i have a Problem wich is why i can't execute the Code. What am i supposed t✅ Checking data from SQL databasehelp on verge of tears✅ How to export data from datagridview into excel fileI've tried like a few ways and cant really make sense of it, if someone can guide me through it it wProblem with Material Design Lib in wpfI have a Combobox item in Stack panel. Im using Material Desing for automatic styling but the Popup✅ Title: Issues with Authentication and Authorization using JWT with AutoRender Mode in Blazor NET8Hello friends, I am currently facing challenges with Authentication and Authorization using JWT wit✅ How do I reference a specific private instance of a classI would like to know how I could reference a specific instance of a class, if the class is private aReceiving Game Controller Input while Minimized (WinForms C#)Pretty general question here. How would I go about receiving input from my user while they aren't tprocess startIve been trying to figure out why the proccess.start() hasnt been working✅ Configurations say that appsettings is returning nullBasically, i have a configuration and i'm trying to access a value from my appsettings, and all that✅ ASP.NET Core Web Api + SignalRHi, I have an API deployed on IIS but when a person wants to access it they get an error: "ERR_CONNE✅ .NET sdk not workingSo, I've installed the .NET sdk and did what I was told, but it's still not being detected by vscodeMEF No exports were found that match the constraintHi, i'm trying to implement MEF in my WPF app, however i'm getting this error, not sure why anymore.✅ WPF - set UIElement (image) in XAML depending on databound Property Enum valueI am trying to dynamically change a StatusBar image via a view's XAML depending upon a databound VieASP.NET Controller API + Blazor Client UI resources and helpHello! I'm doing a side project where I created the backend API with simple CRUD functionality and A✅ Run PuppeteerSharp in Docker ContainerI have an endpoint that creates PDFs using PuppeteerSharp. I work fine locally because it can automaDocker + Blazor + MSSQL handshake errorWhen I run dotnet ef database update I get the following error : ``Microsoft.Data.SqlClient.SqlExceProblem with corner radius XAML propertyI use a border with these properties: ```<Border CornerRadius="3" Background="{StaticResource Edito✅ :white_check_mark: Dictionary<int, ...> lookup time seems a bit too slowI was profiling a program, and I saw this: ```cs 100 % HasObject • 136 ms • 189 217 Calls • Engine.Rhow to read .txt file next to the Program.csi have the following code that is begin run ```cs string fileContent = File.ReadAllText("hamlet.txt