Giter Site home page Giter Site logo

Comments (4)

chitoyuu avatar chitoyuu commented on July 17, 2024

Do you have the gdnlib and gdns resources set up? Some examples can be found here: https://github.com/godot-rust/gdnative/tree/master/examples/rpc

from gdnative.

eec36 avatar eec36 commented on July 17, 2024

Yes I did setup the gdnlib and gdns and it still not exposing the Rust functions in GDScript.

[general]

singleton=false
load_once=true
symbol_prefix="godot_"
reloadable=true

[entry]

Windows.64="res://rust/rust.dll"

[dependencies]

Windows.64=[  ]
[gd_resource type="NativeScript" load_steps=2 format=2]

[ext_resource path="res://rust/rust.gdnlib" type="GDNativeLibrary" id=1]

[resource]
resource_name = "Features"
class_name = "Features"
library = ExtResource( 1 )

from gdnative.

chitoyuu avatar chitoyuu commented on July 17, 2024

The resources seem to be alright, but Godot's handling of globally nameable script classes is known to be a bit temperamental. Try saving the project and re-opening it. If that fails then perhaps you can load the gdns explicitly in your GDScript.

If you still have any further problems, please provide the entire output (stdout + stderr) of the Godot editor.

from gdnative.

eec36 avatar eec36 commented on July 17, 2024

Thanks for the help, I solved it.
Because Command Prompt or stdout hint me an error about overflow.

Godot Engine v3.5.1.stable.official.6fed1ffa3 - https://godotengine.org
OpenGL ES 3.0 Renderer: NVIDIA GeForce GTX 1650/PCIe/SSE2
Async. shader compilation: OFF

loaded Features!
thread '<unnamed>' panicked at 'attempt to multiply with overflow', src\lib.rs:17:25
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
ERROR: gdnative-core: method panicked (check stderr for output)
   at: <unset> (<unset>:0)
ERROR: Panic message: attempt to multiply with overflow
   at: <unset> (C:\Users\Administrator\.cargo\registry\src\github.com-1ecc6299db9ec823\gdnative-core-0.11.3\src\private.rs:199)
Null
   At: res://gd/sekai.gd:6:_ready()

Then I fixed the overflow by using wrapping_mul

	#[method]
	fn arr_gen(&mut self, amount: i32) -> Vec<i32>
	{	let mut ret = Vec::new();
		for _ in 0..amount
		{	self.num = self.num.wrapping_mul(0xd1342543de82ef95);
			ret.push((self.num & 0x7fffffff) as i32); }
		ret }}

from gdnative.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.