C#: Assume 64-bit types when type has no meta
When the C# bindings generator finds a type without meta assume the type refers to the 64-bit version of the type: - `float` is converted to `double` - `int` is converted to `long`
This commit is contained in:
parent
a5db03efa7
commit
9a10701c69
12 changed files with 42 additions and 53 deletions
|
|
@ -11,7 +11,7 @@ public partial class _CLASS_ : _BASE_
|
|||
}
|
||||
|
||||
// Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
public override void _Process(float delta)
|
||||
public override void _Process(double delta)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue