Hazel πŸŒŠπŸ’ƒ
Hazel πŸŒŠπŸ’ƒ
CC#
Created by JΓ«skΕ‚er on 4/17/2024 in #help
Damage system isn't working
I'm not a unity expert, my thought is that it's a result of the collision being registered on multiple frames before being destroyed.
10 replies
CC#
Created by JΓ«skΕ‚er on 4/17/2024 in #help
Damage system isn't working
From a debugging perspective, how many times do you see your "this is also hitting you" and "you're hit" messages for each interaction?
10 replies
CC#
Created by JΓ«skΕ‚er on 4/17/2024 in #help
Damage system isn't working
$code
10 replies
CC#
Created by Mass on 4/15/2024 in #help
βœ… Inconsistent accessibility: property type is less accessible than property.
// visible inside the defining assembly only
internal class Foo;

// visible outside the defining assembly
public class Bar
{
// visible outside the defining assembly
// but foo is only available internally
// so error
public Foo GetFoo()
{
return new Foo();
}

// visible internally only
// so no error
internal Foo GetFoo()
{
return new Foo();
}
}
// visible inside the defining assembly only
internal class Foo;

// visible outside the defining assembly
public class Bar
{
// visible outside the defining assembly
// but foo is only available internally
// so error
public Foo GetFoo()
{
return new Foo();
}

// visible internally only
// so no error
internal Foo GetFoo()
{
return new Foo();
}
}
45 replies
CC#
Created by Mass on 4/15/2024 in #help
βœ… Inconsistent accessibility: property type is less accessible than property.
A snippet to help visualize why this is important:
45 replies
CC#
Created by Mass on 4/15/2024 in #help
βœ… Inconsistent accessibility: property type is less accessible than property.
The options to resolve this are: 1. Change the accessibility level of Bar to internal. 2. Change the accessibility level of Foo to public.
45 replies
CC#
Created by Mass on 4/15/2024 in #help
βœ… Inconsistent accessibility: property type is less accessible than property.
Here, Bar gets that error because Foo is internal but Bar is public while attempting to derive from Foo.
45 replies
CC#
Created by Mass on 4/15/2024 in #help
βœ… Inconsistent accessibility: property type is less accessible than property.
internal class Foo;
public class Bar : Foo;
internal class Foo;
public class Bar : Foo;
45 replies
CC#
Created by Mass on 4/15/2024 in #help
βœ… Inconsistent accessibility: property type is less accessible than property.
For example:
45 replies
CC#
Created by Mass on 4/15/2024 in #help
βœ… Inconsistent accessibility: property type is less accessible than property.
That error indicates that you're exposing something that is less accessibile than the type throwing it.
45 replies
CC#
Created by nkr on 4/6/2024 in #help
Windows Forms help needed
It automatically handles that for you.
49 replies
CC#
Created by nkr on 4/6/2024 in #help
Windows Forms help needed
I recommend using a tab control instead of a menu strip for that page change idea.
49 replies
CC#
Created by incel detector on 2/7/2024 in #help
βœ… How to intercept and cancel minimize events | C# WPF newbie
$code
3 replies
CC#
Created by π•Šπ•¨π•šπ•—π•₯ on 2/7/2024 in #help
how to make a endless tuner
They haven’t presented a problem for us to help them with
50 replies
CC#
Created by π•Šπ•¨π•šπ•—π•₯ on 2/7/2024 in #help
how to make a endless tuner
That’s not a problem, that’s an idea.
50 replies
CC#
Created by π•Šπ•¨π•šπ•—π•₯ on 2/7/2024 in #help
how to make a endless tuner
We can't help you if you don't help us help you πŸ™‚
50 replies
CC#
Created by π•Šπ•¨π•šπ•—π•₯ on 2/7/2024 in #help
how to make a endless tuner
It would help if you explain a specific problem you're facing, and supply any supporting $code
50 replies
CC#
Created by π•Šπ•¨π•šπ•—π•₯ on 2/7/2024 in #help
how to make a endless tuner
:tacolost:
50 replies
CC#
Created by π•Šπ•¨π•šπ•—π•₯ on 2/7/2024 in #help
how to make a endless tuner
I'm lost too.
50 replies